Skip to content

Commit

Permalink
dialing down logging of invalid HELO to debug (#2448)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Florentine <[email protected]>
  • Loading branch information
jflo authored Jun 17, 2021
1 parent 07f3135 commit b00ad78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected void decode(final ChannelHandlerContext ctx, final ByteBuf in, final L
try {
peerInfo = HelloMessage.readFrom(message).getPeerInfo();
} catch (final RLPException e) {
LOG.warn("Received invalid HELLO message, set log level to TRACE for message body", e);
LOG.debug("Received invalid HELLO message, set log level to TRACE for message body", e);
connectFuture.completeExceptionally(e);
ctx.close();
return;
Expand Down

0 comments on commit b00ad78

Please sign in to comment.