diff --git a/zuul-core/src/main/java/com/netflix/zuul/netty/insights/ServerStateHandler.java b/zuul-core/src/main/java/com/netflix/zuul/netty/insights/ServerStateHandler.java index 59810b3960..e16f66dc68 100644 --- a/zuul-core/src/main/java/com/netflix/zuul/netty/insights/ServerStateHandler.java +++ b/zuul-core/src/main/java/com/netflix/zuul/netty/insights/ServerStateHandler.java @@ -81,7 +81,7 @@ public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws E cause.getClass().getSimpleName()) .increment(); passport(ctx).add(PassportState.SERVER_CH_EXCEPTION); - logger.info("Connection error on Inbound: ", cause); + logger.info("Connection error on Inbound", cause); super.exceptionCaught(ctx, cause); } @@ -123,7 +123,7 @@ public void disconnect(ChannelHandlerContext ctx, ChannelPromise promise) throws public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { passport(ctx).add(PassportState.SERVER_CH_EXCEPTION); if (cause instanceof Errors.NativeIoException) { - logger.debug("PassportStateServerHandler Outbound NativeIoException ", cause); + logger.debug("PassportStateServerHandler Outbound NativeIoException", cause); registry.counter( "server.connection.exception.outbound", "handler",