OPNFLWPLUG-1032: Neon-MRI: Bump odlparent, yangtools, mdsal
[openflowplugin.git] / samples / simple-client / src / main / java / org / opendaylight / openflowjava / protocol / impl / clients / SimpleClientHandler.java
index eac94db3d1079df1edb3565e5a4f755af25e09cf..f4ff4298593108af170fd95e612ca4128c51fd27 100644 (file)
@@ -44,7 +44,7 @@ public class SimpleClientHandler extends ChannelInboundHandlerAdapter {
     public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
         ByteBuf bb = (ByteBuf) msg;
         if (LOG.isDebugEnabled()) {
-            LOG.debug("<< {}", ByteBufUtils.byteBufToHexString(bb));
+            LOG.debug("Message {}", ByteBufUtils.byteBufToHexString(bb));
         }
         int length = bb.getUnsignedShort(bb.readerIndex() + LENGTH_INDEX_IN_HEADER);
         LOG.trace("SimpleClientHandler - start of read");