Skip to content

Commit

Permalink
Use a higher log level for unexpected errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Mar 27, 2024
1 parent 0de8a3d commit 7c6ebf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private void acceptConnection( SocketChannel s, String name, long connectionId,
return;
}
if ( e.getCause() instanceof IOException ) {
log.info( "accept {} connection: {}", name, e.getCause().getMessage() );
log.error( "accept {} connection: {}", name, e.getCause().getMessage() );
return;
}
throw e;
Expand Down

0 comments on commit 7c6ebf4

Please sign in to comment.