mirror of https://github.com/grpc/grpc-java.git
netty: reduce severity of disconnect message
This commit is contained in:
parent
df69485f44
commit
06e823e251
|
|
@ -419,7 +419,7 @@ class NettyServerHandler extends AbstractNettyHandler {
|
||||||
@Override
|
@Override
|
||||||
protected void onConnectionError(ChannelHandlerContext ctx, Throwable cause,
|
protected void onConnectionError(ChannelHandlerContext ctx, Throwable cause,
|
||||||
Http2Exception http2Ex) {
|
Http2Exception http2Ex) {
|
||||||
logger.log(Level.WARNING, "Connection Error", cause);
|
logger.log(Level.FINE, "Connection Error", cause);
|
||||||
connectionError = cause;
|
connectionError = cause;
|
||||||
super.onConnectionError(ctx, cause, http2Ex);
|
super.onConnectionError(ctx, cause, http2Ex);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue