Lower incoming message logging to trace 46/83346/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 1 Aug 2019 08:53:33 +0000 (10:53 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 1 Aug 2019 08:53:33 +0000 (10:53 +0200)
This prevents a flood of messages during testing.

Change-Id: Ib80066ec047982ae3253d9ef95705b9ca95c8b92
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
bgp/rib-impl/src/main/java/org/opendaylight/protocol/bgp/rib/impl/BGPSessionImpl.java

index 7233833cee3c2bc20772a33ed2b40121e35753d7..74459f74063d8ea93d39fb4cb97f8a5bd33e005c 100644 (file)
@@ -521,7 +521,7 @@ public class BGPSessionImpl extends SimpleChannelInboundHandler<Notification> im
 
     @Override
     protected final void channelRead0(final ChannelHandlerContext ctx, final Notification msg) {
-        LOG.debug("Message was received: {}", msg);
+        LOG.trace("Message was received: {}", msg);
         this.handleMessage(msg);
     }