mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-02-16 21:21:06 +01:00
Drop log level to debug for couple of NettyMessaging log statements
Change-Id: I89867eecca4bc59caf315dd3d99864c7a9a29738
This commit is contained in:
parent
e2958f29b8
commit
8a0569ebfd
@ -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();
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user