Exemple #1
0
 public static void Log(string LogText)
 {
     LogNumber += 1;
     if (LogNumber == 1)
     {
         CreateDebugFile();
     }
     ConWin.UpdateDebugLog("Debug.Log #" + LogNumber + ": " + LogText);
     UpdateDebugFile("Debug.Log #" + LogNumber + ": " + LogText);
 }
Exemple #2
0
 public static void WG(string LogText)
 {
     ConWin.UpdateDebugLog("WG: " + LogText);
 }
Exemple #3
0
 public static void Environment(string LogText)
 {
     ConWin.UpdateDebugLog("Environment: " + LogText);
 }