X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflow-protocol-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowjava%2Fprotocol%2Fimpl%2Fcore%2FOFVersionDetector.java;h=ba94bf3b2973636c405d9dfee4589b8620308f9c;hb=cd6e0a4084aebe05fa510d9f93def875c95ce609;hp=fa419b92c11a2789687fee6b567ef59f99f138de;hpb=03b554b297bf67704cff0db83ac3c1740c4c9423;p=openflowjava.git diff --git a/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/core/OFVersionDetector.java b/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/core/OFVersionDetector.java index fa419b92..ba94bf3b 100644 --- a/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/core/OFVersionDetector.java +++ b/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/core/OFVersionDetector.java @@ -26,15 +26,15 @@ public class OFVersionDetector extends ByteToMessageDecoder { * Constructor of class. */ public OFVersionDetector() { - LOGGER.info("Creating OFVersionDetector"); + LOGGER.debug("Creating OFVersionDetector"); } @Override protected void decode(ChannelHandlerContext chc, ByteBuf bb, List list) throws Exception { - LOGGER.info("Decoding frame"); + LOGGER.debug("Decoding frame"); if (bb.readableBytes() == 0) { - LOGGER.info("not enough data"); + LOGGER.debug("not enough data"); bb.release(); return; }