Ejemplo n.º 1
0
 public static void LogOnlyConsole(Utils.LogEntryType prefix, string content)
 {
     StaticData.LoggerInstance.Log(prefix, content, true);
 }
Ejemplo n.º 2
0
 public static void LogException(Utils.LogEntryType prefix, Exception ex)
 {
     StaticData.LoggerInstance.LogException(prefix, ex);
 }
Ejemplo n.º 3
0
 public static void Log(Utils.LogEntryType prefix, string content)
 {
     StaticData.LoggerInstance.Log(prefix, content);
 }