Logging updated
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / OFEncoder.java
index a62384178473422f9cbaf96825fab3e08485e010..62972b7093cd376e7537830416bc6ea23ae749cd 100644 (file)
@@ -28,13 +28,13 @@ public class OFEncoder extends MessageToByteEncoder<OfHeader> {
     
     /** Constructor of class */
     public OFEncoder() {
-        LOGGER.debug("Creating OF13Encoder");
+        LOGGER.trace("Creating OF13Encoder");
     }
     
     @Override
     protected void encode(ChannelHandlerContext ctx, OfHeader msg, ByteBuf out)
             throws Exception {
-        LOGGER.debug("Encoding");
+        LOGGER.trace("Encoding");
         try {
             SerializationFactory.messageToBuffer(msg.getVersion(), out, msg);
         } catch(Exception e) {