netty: reduce severity of disconnect message

This commit is contained in:
Carl Mastrangelo 2017-05-02 09:51:22 -07:00 committed by GitHub
parent df69485f44
commit 06e823e251
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ class NettyServerHandler extends AbstractNettyHandler {
@Override
protected void onConnectionError(ChannelHandlerContext ctx, Throwable cause,
Http2Exception http2Ex) {
logger.log(Level.WARNING, "Connection Error", cause);
logger.log(Level.FINE, "Connection Error", cause);
connectionError = cause;
super.onConnectionError(ctx, cause, http2Ex);
}