소스 검색

调整日志

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


Loading…
취소
저장