Logging updated
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / OFVersionDetector.java
index 9026dcc68d957b0b3cc323b7462896c5880d6f94..719965b9dd44e001d04b4feafe805033d5488878 100644 (file)
@@ -1,4 +1,11 @@
-/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
 package org.opendaylight.openflowjava.protocol.impl.core;
 
 import io.netty.buffer.ByteBuf;
@@ -27,7 +34,7 @@ public class OFVersionDetector extends ByteToMessageDecoder {
      * Constructor of class.
      */
     public OFVersionDetector() {
-        LOGGER.debug("Creating OFVersionDetector");
+        LOGGER.trace("Creating OFVersionDetector");
     }
 
     @Override
@@ -37,9 +44,7 @@ public class OFVersionDetector extends ByteToMessageDecoder {
             bb.release();
             return;
         }
-        LOGGER.debug("RI: " + bb.readerIndex());
         byte version = bb.readByte();
-
         if ((version == OF13_VERSION_ID) || (version == OF10_VERSION_ID)) {
             LOGGER.debug("detected version: " + version);
         } else {