File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
net/src/main/java/com/zfoo/net Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public void channelInactive(ChannelHandlerContext ctx) throws Exception {
47
47
super .channelInactive (ctx );
48
48
var session = SessionUtils .getSession (ctx );
49
49
TunnelClient .tunnels .remove (ctx .channel ());
50
- logger .info ("tunnel client inactivate in sid:[{}]" , session .getSid ());
50
+ logger .warn ("tunnel client inactivate in sid:[{}]" , session .getSid ());
51
51
}
52
52
53
53
@ Override
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public void channelInactive(ChannelHandlerContext ctx) throws Exception {
49
49
return ;
50
50
}
51
51
NetContext .getSessionManager ().removeServerSession (session );
52
- logger .warn ("server channel is inactive {}" , SessionUtils .sessionSimpleInfo (ctx ));
52
+ logger .info ("server channel is inactive {}" , SessionUtils .sessionSimpleInfo (ctx ));
53
53
EventBus .post (ServerSessionInactiveEvent .valueOf (session ));
54
54
}
55
55
}
You can’t perform that action at this time.
0 commit comments