Skip to content

Commit 8154d8f

Browse files
committed
refactor(net): change the exception log level of udp message handler
1 parent b148e52 commit 8154d8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

framework/src/main/java/org/tron/common/net/udp/handler/MessageHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void channelReadComplete(ChannelHandlerContext ctx) {
7878

7979
@Override
8080
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
81-
logger.info("Exception caught in udp message handler, {} {}",
81+
logger.warn("Exception caught in udp message handler, {} {}",
8282
ctx.channel().remoteAddress(), cause.getMessage());
8383
ctx.close();
8484
}

0 commit comments

Comments
 (0)