Beispiel #1
0
 public static void SystemLogException(string message, string stackTrace)
 {
     DebugExecution.AddSystemLog(LogType.Exception, message, stackTrace, "ALL");
     DebugConsole.LogError(message);
 }
Beispiel #2
0
 public static void SystemLogWarning(string message, string stackTrace)
 {
     DebugExecution.AddSystemLog(LogType.Warning, message, stackTrace, "ALL");
     DebugConsole.LogWarning(message);
 }