Exemple #1
0
        public static void LogLoop(this object obj, string message = "")
        {
            if (!Debuger.EnableLogLoop)
            {
                return;
            }

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

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