ofp_packet_queue structure - implemented missing fields
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / OFVersionDetector.java
index fa419b92c11a2789687fee6b567ef59f99f138de..ba94bf3b2973636c405d9dfee4589b8620308f9c 100644 (file)
@@ -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<Object> 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;
         }