필요없는 참조 제거 및 로그추가
This commit is contained in:
parent
9f4a0bbefb
commit
f13ad6f2b2
|
|
@ -1,5 +1,4 @@
|
|||
using NLog;
|
||||
using Server.System;
|
||||
using Server.System;
|
||||
|
||||
namespace Server.Scheduler
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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>();
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
using Newtonsoft.Json;
|
||||
using StackExchange.Redis;
|
||||
using static Quartz.Logging.OperationName;
|
||||
|
||||
namespace Server.System
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue