예제 #1
0
 public static void LogErrors(params Exception[] excs)
 {
     for (int c = 0; c < excs.Length; c++)
     {
         APIDebugConsole.LogError(excs[c]);
     }
 }
예제 #2
0
 public static void LogError(string msg)
 {
     APIDebugConsole.LogError(msg);
 }
예제 #3
0
 public static void LogError(Exception exc)
 {
     APIDebugConsole.LogError(exc.ToString());
 }
예제 #4
0
 public static void LogWarning(string msg)
 {
     APIDebugConsole.LogWarning(msg);
 }