Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void handlerRemoved(ChannelHandlerContext ctx) {
public void channelRead0(ChannelHandlerContext ctx, String message) {
final Connection connection = ctx.channel().attr(CONNECTION).get();
if (connection != null && connection.isClosed()) {
Log.warn("Processing message on {} whose connection is already closed. This can cascade into a null-session error downstream: {}",
Log.debug("Processing message on {} whose connection is already closed. This can cascade into a null-session error downstream: {}",
ctx.channel().remoteAddress() == null ? ctx.channel().localAddress() : ctx.channel().localAddress() + "--" + ctx.channel().remoteAddress(), message);
}
// Get the parser to use to process stanza. For optimization there is going
Expand Down
Loading