X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fnettyutil%2Fhandler%2FFramingMechanismHandlerFactory.java;h=30589daa22ac65ab9724c3a842f815613f7c75d5;hb=ec7ec6f9ccf48b2c2bc4d14b19a279410108309f;hp=35f7679496259f0b3b46267ad5b2ded0a69511ff;hpb=2d586172a138afacb388ca2b35b74160ba26b0ba;p=controller.git diff --git a/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/handler/FramingMechanismHandlerFactory.java b/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/handler/FramingMechanismHandlerFactory.java index 35f7679496..30589daa22 100644 --- a/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/handler/FramingMechanismHandlerFactory.java +++ b/opendaylight/netconf/netconf-netty-util/src/main/java/org/opendaylight/controller/netconf/nettyutil/handler/FramingMechanismHandlerFactory.java @@ -8,23 +8,22 @@ package org.opendaylight.controller.netconf.nettyutil.handler; +import io.netty.buffer.ByteBuf; +import io.netty.handler.codec.MessageToByteEncoder; import org.opendaylight.controller.netconf.util.messages.FramingMechanism; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import io.netty.buffer.ByteBuf; -import io.netty.handler.codec.MessageToByteEncoder; - public final class FramingMechanismHandlerFactory { - private static final Logger logger = LoggerFactory.getLogger(FramingMechanismHandlerFactory.class); + private static final Logger LOG = LoggerFactory.getLogger(FramingMechanismHandlerFactory.class); private FramingMechanismHandlerFactory() { // not called - private constructor for utility class } public static MessageToByteEncoder createHandler(FramingMechanism framingMechanism) { - logger.debug("{} framing mechanism was selected.", framingMechanism); + LOG.debug("{} framing mechanism was selected.", framingMechanism); if (framingMechanism == FramingMechanism.EOM) { return new EOMFramingMechanismEncoder(); } else {