Exemple #1
0
 public static void Warn(string msg = "")
 {
     LogHelpers.Log("!" + DebugHelpers.GetCurrentContext(2) + ((msg != "") ? " - " + msg: ""));
 }
Exemple #2
0
 public static void SetDisplay(string msgLabel, string msg, int duration)
 {
     DebugHelpers.Print(msgLabel, msg, duration);
 }
Exemple #3
0
 public static void AlertOnce(string msg = "")
 {
     LogHelpers.LogOnce(DebugHelpers.GetCurrentContext(2) + ((msg != "") ? " - " + msg : ""));
 }