bad log format

git-svn-id: http://jclouds.googlecode.com/svn/trunk@1454 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2009-06-21 01:48:36 +00:00
parent 1557173695
commit 7e181c92b0
1 changed files with 2 additions and 2 deletions

View File

@ -261,13 +261,13 @@ public class HttpNioFutureCommandConnectionPool extends
}
public void fatalIOException(IOException ex, NHttpConnection conn) {
logger.error(ex, "%3$s-%1$d{%2$s} - io error", conn, conn.hashCode(),
logger.error(ex, "%3$s-%1$s{%2$d} - io error", conn, conn.hashCode(),
target);
resubmitIfRequestIsReplayable(conn, ex);
}
public void fatalProtocolException(HttpException ex, NHttpConnection conn) {
logger.error(ex, "%3$s-%1$s{%2$s} - http error", conn, conn.hashCode(),
logger.error(ex, "%3$s-%1$s{%2$d} - http error", conn, conn.hashCode(),
target);
setExceptionOnCommand(conn, ex);
}