Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Reduce log level for discovery processing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalinin committed Aug 21, 2018
1 parent 2287929 commit 8ee599b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void channelRead0(ChannelHandlerContext ctx, DiscoveryEvent event) throws
try {
nodeManager.handleInbound(event);
} catch (Throwable t) {
logger.error("Failed to process incoming message: {}", event.getMessage(), t);
logger.info("Failed to process incoming message: {}, caused by: {}", event.getMessage(), t.toString());
}
}

Expand Down

0 comments on commit 8ee599b

Please sign in to comment.