Skip to content

Commit 114bd04

Browse files
authored
reduce log level (#216)
1 parent ccb2731 commit 114bd04

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/ethereum/beacon/discovery/pipeline/PipelineImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public synchronized Pipeline build() {
3535
try {
3636
handler.handle(envelope);
3737
} catch (Throwable t) {
38-
LOG.warn(
38+
LOG.debug(
3939
"Unexpected error in pipeline handler {}",
4040
handler.getClass().getSimpleName(),
4141
t);

src/main/java/org/ethereum/beacon/discovery/pipeline/handler/HandshakeMessagePacketHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void handle(Envelope envelope) {
152152
ex);
153153
markHandshakeAsFailed(envelope, session);
154154
} catch (Throwable t) {
155-
LOG.warn(
155+
LOG.debug(
156156
"Unexpected error while processing handshake [{}] from node {}",
157157
packet,
158158
session.getNodeRecord(),

0 commit comments

Comments
 (0)