Example #1
0
 private void ExceptionReporterCallback(string message, string stackTrace, LogType logType)
 {
     if (logType == 4)
     {
         string text = ExceptionCatcher.CreateHash(message + stackTrace);
         if (!ExceptionCatcher.AlreadySent(text))
         {
             base.StartCoroutine(this.SendExceptionReport(message, stackTrace, text));
             ExceptionCatcher.sentReports.Add(text);
             return;
         }
     }
 }