Beispiel #1
0
 public static void LogLoop(this object obj, string message = "")
 {
     if (!Debuger.EnableLoop)
     {
         return;
     }
     Debuger.LogLoop(GetLogTag(obj), GetLogCallerMethod(), message);
 }
Beispiel #2
0
    public static void LogLoop(this object obj, string format, params object[] args)
    {
        if (!Debuger.EnableLoop)
        {
            return;
        }

        Debuger.LogLoop(GetLogTag(obj), GetLogCallerMethod(), string.Format(format, args));
    }