Skip to content

Commit

Permalink
Allow unity to finish capturing uncaught exception (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
konraddysput authored Jun 10, 2024
1 parent f166eea commit a8874ae
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public void uncaughtException(final Thread thread, final Throwable throwable) {
String throwableType = throwable.getClass().getName();
Log.d(LOG_TAG, "Detected unhandled background thread exception. Exception type: " + throwableType + ". Reporting to Backtrace");
ReportThreadException(throwableType + " : " + throwable.getMessage(), stackTraceToString(throwable.getStackTrace()));
finish();
}

public void ReportThreadException(String message, String stackTrace) {
Expand Down

0 comments on commit a8874ae

Please sign in to comment.