예제 #1
0
 public static void LogWarning(this object obj, string format, params object[] args)
 {
     MyLogger.LogWarning(GetLogTag(obj), GetLogCallerMethod(), string.Format(format, args));
 }
예제 #2
0
        //----------------------------------------------------------------------

        public static void LogWarning(this object obj, string message)
        {
            MyLogger.LogWarning(GetLogTag(obj), GetLogCallerMethod(), (string)message);
        }