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