BGPCEP-736: BMP Testtool retry connection
[bgpcep.git] / bgp / bmp-mock / src / main / java / org / opendaylight / protocol / bmp / mock / BmpMockSession.java
index 0c5bd6b9b1c875d126f3d1b125f30b280ddf3681..84ddfcc4bae826d44bd06ae29d4717374dfcfc45 100644 (file)
@@ -66,7 +66,7 @@ public final class BmpMockSession extends SimpleChannelInboundHandler<Notificati
     public void channelActive(final ChannelHandlerContext ctx) {
         this.channel = ctx.channel();
         this.channel.closeFuture().addListener((ChannelFutureListener) future ->
-                LOG.info("BMP session {} final successfully established.", BmpMockSession.this.channel));
+                LOG.info("BMP session {} close.", BmpMockSession.this.channel));
         LOG.info("BMP session {} successfully established.", this.channel);
         final InetSocketAddress localAddress = (InetSocketAddress) this.channel.localAddress();
         this.remoteAddress = (InetSocketAddress) this.channel.remoteAddress();