Skip to content

Commit

Permalink
Switch to debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jguerra committed Oct 30, 2024
1 parent 306ba89 commit df2cef2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exc
}
super.userEventTriggered(ctx, evt);
} else if(evt instanceof SslCloseCompletionEvent) {
logger.warn("Received SslCloseCompletionEvent on {}", ChannelUtils.channelInfoForLogging(ctx.channel()));
logger.debug("Received SslCloseCompletionEvent on {}", ChannelUtils.channelInfoForLogging(ctx.channel()));
ctx.channel().attr(SSL_CLOSE_NOTIFY_SEEN).set(true);
super.userEventTriggered(ctx, evt);
} else {
Expand Down

0 comments on commit df2cef2

Please sign in to comment.