BlockingClient: shorter error log

This commit is contained in:
Mike Hearn
2015-04-28 22:53:34 +02:00
parent 535c2852ea
commit 8742b87701

View File

@@ -100,7 +100,7 @@ public class BlockingClient implements MessageWriteTarget {
}
} catch (Exception e) {
if (!vCloseRequested) {
log.error("Error trying to open/read from connection: " + serverAddress, e);
log.error("Error trying to open/read from connection: {}: {}", serverAddress, e.getMessage());
connectFuture.setException(e);
}
} finally {