dialing down logging of invalid HELO to debug (#2448) (#2463)

Signed-off-by: Justin Florentine <justin.florentine@consensys.net>
pull/2464/head
Justin Florentine 3 years ago committed by GitHub
parent 012eff06c7
commit b6626910c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ethereum/p2p/src/main/java/org/hyperledger/besu/ethereum/p2p/rlpx/connections/netty/DeFramer.java

@ -109,7 +109,7 @@ final class DeFramer extends ByteToMessageDecoder {
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;

Loading…
Cancel
Save