From af4b8add9d103889472a75973847871b7dcdf3c8 Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 08 九月 2025 14:23:36 +0800 Subject: [PATCH] 0908 --- ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/netty/client/NettyClientHandler.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/netty/client/NettyClientHandler.java b/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/netty/client/NettyClientHandler.java index 3d87e1e..fac5287 100644 --- a/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/netty/client/NettyClientHandler.java +++ b/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/netty/client/NettyClientHandler.java @@ -69,13 +69,13 @@ * 当客户端主动断开服务端的链接后,这个通道就是不活跃的。也就是说客户端与服务端的关闭了通信通道并且不可以传输数据 */ public void channelInactive(ChannelHandlerContext ctx) throws Exception { - System.out.println("客户端与服务端通道-关闭:" + ctx.channel().localAddress() + "channelInactive"); + log.error("客户端与服务端通道-关闭:" + ctx.channel().localAddress() + "channelInactive"); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { ctx.close(); - System.out.println("异常退出:" + cause.getMessage()); + log.error("异常退出:" + cause.getMessage()); } public void write(ChannelHandlerContext ctx, String mess) throws Exception { -- Gitblit v1.7.1