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