We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d3890 commit 2996a21Copy full SHA for 2996a21
httpclient-core/src/main/java/esa/httpclient/core/netty/Utils.java
@@ -61,8 +61,8 @@ static void handleH1ChannelEx(HandleRegistry registry,
61
boolean hasLogged = false;
62
if (cause instanceof ClosedConnectionException) {
63
if (logger.isDebugEnabled()) {
64
- logger.debug("ClosedConnectionException occurred in connection: {}",
65
- channel, cause);
+ logger.debug("ClosedConnectionException occurred in connection: {}, maybe server has closed" +
+ " connection", channel);
66
}
67
hasLogged = true;
68
} else if (cause instanceof IOException) {
0 commit comments