Example #1
0
 public static void LogErrorWithTypeTag <T>(string format, params object[] parameters)
 {
     FlaiDebug.LogError("[" + typeof(T).Name + "] " + string.Format(format, parameters));
 }
Example #2
0
 public static void LogErrorWithTypeTag <T>(string message)
 {
     FlaiDebug.LogError("[" + typeof(T).Name + "] " + message);
 }