public static void PrintLog(LogSeverity level, string format, params object[] args) { if (string.IsNullOrEmpty(format)) { return; } BuglyAgent.LogToConsole(level, string.Format(format, args)); }