X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-tcp%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Ftcp%2Fnetty%2FProxyServerHandler.java;h=21ec8e82d68632aeb6a2793a77d00f760a121740;hp=fa8892853ba16626ac32f98e4a4bf187e3cba18e;hb=b2e81149739c87f0ecc2ce7f06448d7a5d3162b8;hpb=48814d6a264b8f13e5db1422336d9ef25cb05fa9 diff --git a/opendaylight/netconf/netconf-tcp/src/main/java/org/opendaylight/controller/netconf/tcp/netty/ProxyServerHandler.java b/opendaylight/netconf/netconf-tcp/src/main/java/org/opendaylight/controller/netconf/tcp/netty/ProxyServerHandler.java index fa8892853b..21ec8e82d6 100644 --- a/opendaylight/netconf/netconf-tcp/src/main/java/org/opendaylight/controller/netconf/tcp/netty/ProxyServerHandler.java +++ b/opendaylight/netconf/netconf-tcp/src/main/java/org/opendaylight/controller/netconf/tcp/netty/ProxyServerHandler.java @@ -22,7 +22,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ProxyServerHandler extends ChannelInboundHandlerAdapter { - private static final Logger logger = LoggerFactory.getLogger(ProxyServerHandler.class.getName()); + private static final Logger LOG = LoggerFactory.getLogger(ProxyServerHandler.class); private final Bootstrap clientBootstrap; private final LocalAddress localAddress; @@ -48,32 +48,32 @@ public class ProxyServerHandler extends ChannelInboundHandlerAdapter { @Override public void channelInactive(ChannelHandlerContext ctx) { - logger.trace("channelInactive - closing client channel"); + LOG.trace("channelInactive - closing client channel"); clientChannel.close(); } @Override public void channelRead(ChannelHandlerContext ctx, final Object msg) { - logger.trace("Writing to client channel"); + LOG.trace("Writing to client channel"); clientChannel.write(msg); } @Override public void channelReadComplete(ChannelHandlerContext ctx) { - logger.trace("Flushing client channel"); + LOG.trace("Flushing client channel"); clientChannel.flush(); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { // Close the connection when an exception is raised. - logger.warn("Unexpected exception from downstream.", cause); + LOG.warn("Unexpected exception from downstream.", cause); ctx.close(); } } class ProxyClientHandler extends ChannelInboundHandlerAdapter { - private static final Logger logger = LoggerFactory.getLogger(ProxyClientHandler.class); + private static final Logger LOG = LoggerFactory.getLogger(ProxyClientHandler.class); private final ChannelHandlerContext remoteCtx; private ChannelHandlerContext localCtx; @@ -85,26 +85,26 @@ class ProxyClientHandler extends ChannelInboundHandlerAdapter { @Override public void channelActive(ChannelHandlerContext ctx) { checkState(this.localCtx == null); - logger.trace("Client channel active"); + LOG.trace("Client channel active"); this.localCtx = ctx; } @Override public void channelRead(ChannelHandlerContext ctx, Object msg) { - logger.trace("Forwarding message"); + LOG.trace("Forwarding message"); remoteCtx.write(msg); } @Override public void channelReadComplete(ChannelHandlerContext ctx) { - logger.trace("Flushing remote ctx"); + LOG.trace("Flushing remote ctx"); remoteCtx.flush(); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { // Close the connection when an exception is raised. - logger.warn("Unexpected exception from downstream", cause); + LOG.warn("Unexpected exception from downstream", cause); checkState(this.localCtx.equals(ctx)); ctx.close(); } @@ -112,7 +112,7 @@ class ProxyClientHandler extends ChannelInboundHandlerAdapter { // called both when local or remote connection dies @Override public void channelInactive(ChannelHandlerContext ctx) { - logger.trace("channelInactive() called, closing remote client ctx"); + LOG.trace("channelInactive() called, closing remote client ctx"); remoteCtx.close(); }