Ejemplo n.º 1
0
        public static void LogError(this object obj, string format, params object[] args)
        {
            string message = string.Format(format, args);

            Debuger.LogError(GetLogTag(obj), message);
        }
Ejemplo n.º 2
0
 public static void LogError(this object obj, object message)
 {
     Debuger.LogError(GetLogTag(obj), (string)message);
 }