Make channel disconnection method log at the fine level.

This commit is contained in:
Major-
2014-08-08 14:14:22 +01:00
parent 7924791405
commit 027a39aad4
+1 -1
View File
@@ -51,7 +51,7 @@ public final class ApolloHandler extends ChannelInboundHandlerAdapter {
if (session != null) {
session.destroy();
}
logger.info("Channel disconnected: " + channel);
logger.fine("Channel disconnected: " + channel);
channel.close();
}