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