public static void LogLoop(this object obj, string message = "") { if (!Debuger.EnableLoop) { return; } Debuger.LogLoop(GetLogTag(obj), GetLogCallerMethod(), message); }
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)); }