Logging updated
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / IdleHandler.java
index 65af251677882578339809afe7c1d07d8778f99a..1284618cae15802802ecf7f3d2ad645b0d71c038 100644 (file)
@@ -42,7 +42,7 @@ public class IdleHandler extends IdleStateHandler{
     protected void channelIdle(ChannelHandlerContext ctx, IdleStateEvent evt)
             throws Exception {
         if ((evt.state() == IdleState.READER_IDLE) && (evt.isFirst())) {
-            LOGGER.info("Switch idle");
+            LOGGER.debug("Switch idle");
             SwitchIdleEventBuilder builder = new SwitchIdleEventBuilder();
             builder.setInfo("Switch idle");
             ctx.fireChannelRead(builder.build());