Exemple #1
0
 public static void LogError(object message, params object[] args)
 {
     Print(string.Format("[{0} ERROR]: {1}", GameTimer.GetTime(), string.Format(message.ToString(), args)));
 }
Exemple #2
0
 public static void LogWarning(object message, params object[] args)
 {
     Print(string.Format("[{0} WARNING]: {1}", GameTimer.GetTime(), string.Format(message.ToString(), args)));
 }