Ejemplo n.º 1
0
 public static void SetSession(LogSessionType type)
 {
     _inst.AddLog(Create(UserLogType.LogSession, new Dictionary <string, object>
     {
         { "type", (int)type }
     }));
 }
 public void SetSession(LogSessionType type)
 {
     PreCommand();
     try
     {
         _modules.StartSessionModule.SetSession(type);
     }
     catch (Exception e)
     {
         Logger.ErrorEmulate(e);
         return;
     }
     PostCommand();
 }
 public void SetSession(LogSessionType type)
 {
     PreCommand();
     try
     {
         _modules.StartSessionModule.SetSession(type);
     }
     catch (Exception e)
     {
         Logger.Exception(e, "SetSession", new object[] { (object)(int)type });
         return;
     }
     PostCommand("SetSession", new object[] { (object)(int)type });
 }
Ejemplo n.º 4
0
 public void SetSession(LogSessionType type)
 {
     LogicLog.SetSession(type);
 }