Skip to content

Commit

Permalink
dialing down logging of invalid HELO to debug (hyperledger#2448)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Florentine <[email protected]>
Signed-off-by: Ratan Rai Sur <[email protected]>
  • Loading branch information
jflo authored and RatanRSur committed Jul 8, 2021
1 parent 52aa199 commit 9d9d854
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 9d9d854

Please sign in to comment.