style: 移除 ping 日志

This commit is contained in:
2022-11-14 18:06:17 +08:00
parent 6eddc99b02
commit 8ffe38f17e

View File

@@ -21,7 +21,6 @@ public class BallServerChannelHandler extends SimpleChannelInboundHandler<String
@Override
protected void channelRead0(ChannelHandlerContext context, String message) {
if ("ping".equals(message)) {
LOGGER.info("从服务器 {} 上收到一条 ping 消息.", context.channel().remoteAddress());
context.writeAndFlush("pong");
return;
}