Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
fab-10 authored Mar 14, 2024
2 parents 6e6e132 + 6dd3c84 commit 4e86d5a
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,14 @@ protected void handleOutgoingPacketError(
.addArgument(err)
.log();
} else {
LOG.warn(
"Sending to peer {} failed, native error code {}, packet: {}, stacktrace: {}",
peer,
nativeErr.expectedErr(),
wrapBuffer(packet.encode()),
err);
LOG.atDebug()
.setMessage(
"Sending to peer {} failed, native error code {}, packet: {}, stacktrace: {}")
.addArgument(peer)
.addArgument(nativeErr.expectedErr())
.addArgument(wrapBuffer(packet.encode()))
.addArgument(err)
.log();
}
} else if (err instanceof SocketException && err.getMessage().contains("unreachable")) {
LOG.atDebug()
Expand Down

0 comments on commit 4e86d5a

Please sign in to comment.