From 8a0569ebfdfd64f67abb32dcfc2081482d7da687 Mon Sep 17 00:00:00 2001 From: Madan Jampani Date: Tue, 26 May 2015 12:06:00 -0700 Subject: [PATCH] Drop log level to debug for couple of NettyMessaging log statements Change-Id: I89867eecca4bc59caf315dd3d99864c7a9a29738 --- utils/netty/src/main/java/org/onlab/netty/NettyMessaging.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/netty/src/main/java/org/onlab/netty/NettyMessaging.java b/utils/netty/src/main/java/org/onlab/netty/NettyMessaging.java index 09bcdf7920..4e6f4b7513 100644 --- a/utils/netty/src/main/java/org/onlab/netty/NettyMessaging.java +++ b/utils/netty/src/main/java/org/onlab/netty/NettyMessaging.java @@ -267,7 +267,7 @@ public class NettyMessaging implements MessagingService { @Override public void destroyObject(Endpoint ep, Channel channel) throws Exception { - log.info("Closing connection to {}", ep); + log.debug("Closing connection to {}", ep); channel.close(); } @@ -286,7 +286,7 @@ public class NettyMessaging implements MessagingService { bootstrap.handler(new OnosCommunicationChannelInitializer()); // Start the client. ChannelFuture f = bootstrap.connect(ep.host().toString(), ep.port()).sync(); - log.info("Established a new connection to {}", ep); + log.debug("Established a new connection to {}", ep); return f.channel(); }