浏览代码

调整日志

develop
H Vs 8 个月前
父节点
当前提交
a9cd4a97ad
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      NearCardAttendance.Service/TcpServer/Handler/RegisterHandler.cs

+ 2
- 2
NearCardAttendance.Service/TcpServer/Handler/RegisterHandler.cs 查看文件

@@ -90,7 +90,7 @@ namespace NearCardAttendance.Service.TcpServer.Handler
// var channel = _managerTcpClients.FirstOrDefault(x => x.Key.Equals(imei)).Value;
//await channel.CloseAsync();
await context.Channel.CloseAsync();
_logger.LogInformation($"3分钟超时无数据,主动断链");
_logger.LogInformation($"3分钟超时无数据,主动断链:{context.Channel}");
// 执行任务逻辑
},
#if DEBUG
@@ -107,7 +107,7 @@ namespace NearCardAttendance.Service.TcpServer.Handler
return context.Channel.EventLoop.Schedule(async () =>
{
await context.Channel.CloseAsync();
_logger.LogInformation($"3分钟超时无数据,主动断链");
_logger.LogInformation($"3分钟超时无数据,主动断链:{context.Channel}");
// 执行任务逻辑
},
#if DEBUG


正在加载...
取消
保存