From b27fac2368232913897e6dd4f126c0f8e837d741 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期一, 15 九月 2025 09:08:52 +0800
Subject: [PATCH] 异常口入库日志打印
---
src/main/java/com/zy/core/netty/handle/ProtectorHandler.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/zy/core/netty/handle/ProtectorHandler.java b/src/main/java/com/zy/core/netty/handle/ProtectorHandler.java
index ec0b43c..4a66348 100644
--- a/src/main/java/com/zy/core/netty/handle/ProtectorHandler.java
+++ b/src/main/java/com/zy/core/netty/handle/ProtectorHandler.java
@@ -1,6 +1,7 @@
package com.zy.core.netty.handle;
import com.core.common.Cools;
+import com.zy.utils.News;
import com.zy.core.netty.AbstractInboundHandler;
import com.zy.core.netty.cache.ChannelCache;
import com.zy.core.netty.domain.ChPackage;
@@ -38,7 +39,7 @@
String uuid = ChannelCache.removeChannel(ctx.channel());
ctx.close();
if (!Cools.isEmpty(uuid)){
- log.info("uuid={} 绌洪棽鍓旈櫎", uuid);
+ News.info("uuid={} 绌洪棽鍓旈櫎", uuid);
}
}
}
@@ -52,7 +53,7 @@
String uuid = ChannelCache.removeChannel(ctx.channel());
ctx.close();
if (!Cools.isEmpty(uuid)){
- log.info("閫氶亾 uuid={} 澶卞幓杩炴帴", uuid);
+ News.info("閫氶亾 uuid={} 澶卞幓杩炴帴", uuid);
}
}
--
Gitblit v1.9.1