필요없는 참조 제거 및 로그추가

This commit is contained in:
김판돌 2024-04-07 11:25:09 +09:00
parent 9f4a0bbefb
commit f13ad6f2b2
3 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,4 @@
using NLog;
using Server.System;
using Server.System;
namespace Server.Scheduler
{

View File

@ -98,6 +98,7 @@ namespace Server.Service
#endregion
#region
//TODO 기존 중복세션에 대한 처리도 필요
string loginUUID = Guid.NewGuid().ToString();
Statics.redis.SetList(loginUUID, "LoginUsers");
Dictionary<string, object> userInfo = new Dictionary<string, object>();

View File

@ -1,6 +1,5 @@
using Newtonsoft.Json;
using StackExchange.Redis;
using static Quartz.Logging.OperationName;
namespace Server.System
{