Drop log level to debug for couple of NettyMessaging log statements
Change-Id: I89867eecca4bc59caf315dd3d99864c7a9a29738
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -267,7 +267,7 @@ public class NettyMessaging implements MessagingService { | ... | @@ -267,7 +267,7 @@ public class NettyMessaging implements MessagingService { |
| 267 | 267 | ||
| 268 | @Override | 268 | @Override |
| 269 | public void destroyObject(Endpoint ep, Channel channel) throws Exception { | 269 | public void destroyObject(Endpoint ep, Channel channel) throws Exception { |
| 270 | - log.info("Closing connection to {}", ep); | 270 | + log.debug("Closing connection to {}", ep); |
| 271 | channel.close(); | 271 | channel.close(); |
| 272 | } | 272 | } |
| 273 | 273 | ||
| ... | @@ -286,7 +286,7 @@ public class NettyMessaging implements MessagingService { | ... | @@ -286,7 +286,7 @@ public class NettyMessaging implements MessagingService { |
| 286 | bootstrap.handler(new OnosCommunicationChannelInitializer()); | 286 | bootstrap.handler(new OnosCommunicationChannelInitializer()); |
| 287 | // Start the client. | 287 | // Start the client. |
| 288 | ChannelFuture f = bootstrap.connect(ep.host().toString(), ep.port()).sync(); | 288 | ChannelFuture f = bootstrap.connect(ep.host().toString(), ep.port()).sync(); |
| 289 | - log.info("Established a new connection to {}", ep); | 289 | + log.debug("Established a new connection to {}", ep); |
| 290 | return f.channel(); | 290 | return f.channel(); |
| 291 | } | 291 | } |
| 292 | 292 | ... | ... |
-
Please register or login to post a comment