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