//----------------------------------------------------------------------

        public static void LogWarning(this object obj, string message)
        {
            Debuger.LogWarning(GetLogTag(obj), GetLogCallerMethod(), (string)message);
        }
 public static void LogError(this object obj, string format, params object[] args)
 {
     Debuger.LogError(GetLogTag(obj), GetLogCallerMethod(), string.Format(format, args));
 }