Exemplo n.º 1
0
 public static void LogError(string errormsg)
 {
     instance = GetInstance();
     if (instance != null)
     {
         instance.XLogError(errormsg);
     }
 }
Exemplo n.º 2
0
 public static void LogError(Exception e)
 {
     instance = GetInstance();
     if (instance != null)
     {
         instance.XLogError(e);
     }
 }