public static void LogWarning(object message, Object context) { #if !DISTRIBUTION_VERSION Debug.LogWarning(message, context); RealTimeLog.LogError(message.ToString()); #endif }
public static void LogError(string format, params object[] args) { #if !DISTRIBUTION_VERSION string message = format; try { message = System.String.Format(format, args); } catch { for (int i = 0; i < args.Length; i++) { message += args[i].ToString(); } } Debug.LogError(message); RealTimeLog.LogError(message.ToString()); #endif }