Example #1
0
 public static void LogIf(bool shouldLog, object message)
 {
     if (shouldLog)
     {
         FlaiDebug.Log(message);
     }
 }
Example #2
0
 public static void LogWithTypeTag <T>(string format, params object[] parameters)
 {
     FlaiDebug.Log("[" + typeof(T).Name + "] " + string.Format(format, parameters));
 }
Example #3
0
 public static void LogWithTypeTag <T>(string message)
 {
     FlaiDebug.Log("[" + typeof(T).Name + "] " + message);
 }