예제 #1
0
 public static void Error(Debug.Flag flag, string text, bool ignoreStopLoggingLimit = false)
 {
     if ((activeFlags & flag) > 0)
     {
         Log.Error(text);
     }
 }
예제 #2
0
 public static void Warning(Debug.Flag flag, string text, bool ignoreStopLoggingLimit = false)
 {
     if ((activeFlags & flag) > 0)
     {
         Log.Warning(text, ignoreStopLoggingLimit);
     }
 }