Exemple #1
0
 public static void LogStatic(string msg, Exception ex = null, Pure.Data.MessageType type = Pure.Data.MessageType.Debug)
 {
     if (ex != null)
     {
         msg += " -----> Error : " + ex;
     }
     FastLogger.WriteText(logPrifix, msg);
 }
Exemple #2
0
 public static void LogStatic(string msg, Exception ex = null, Pure.Data.MessageType type = Pure.Data.MessageType.Debug)
 {
     ConsoleHelper.Instance.OutputMessage(msg, ex, type);
     FastLogger.WriteLog(msg);
     if (ex != null)
     {
         FastLogger.WriteLog(ex.ToString());
     }
 }
 public static void LogStatic(string msg, Exception ex = null, Pure.Data.MessageType type = Pure.Data.MessageType.Debug)
 {
     LogHelpers.LogStatic(msg, ex, type);
 }