File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
ErmisServer/src/github/koukobin/ermis/server/main/java/server Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 4444import io .netty .channel .epoll .EpollEventLoopGroup ;
4545import io .netty .channel .epoll .EpollServerSocketChannel ;
4646import io .netty .channel .epoll .EpollSocketChannel ;
47- import io .netty .handler .logging .LogLevel ;
48- import io .netty .handler .logging .LoggingHandler ;
4947import io .netty .handler .ssl .SslHandler ;
5048import io .netty .util .ResourceLeakDetector ;
5149import io .netty .util .internal .logging .InternalLoggerFactory ;
@@ -117,8 +115,7 @@ public static void start() {
117115
118116 // If server isn't production ready we add a logging handler for more detailed logging
119117 if (!ServerSettings .IS_PRODUCTION_READY ) {
120- bootstrapTCP .handler (new LoggingHandler (LogLevel .INFO ));
121- ResourceLeakDetector .setLevel (ResourceLeakDetector .Level .ADVANCED );
118+ ResourceLeakDetector .setLevel (ResourceLeakDetector .Level .PARANOID );
122119 }
123120
124121 serverSocketChannel = (EpollServerSocketChannel ) bootstrapTCP .bind ().sync ().channel ();
You can’t perform that action at this time.
0 commit comments