chore: Add some more logging to global exc handler
This commit is contained in:
parent
7d143e2f60
commit
a6579e6434
|
@ -17,7 +17,7 @@ class GlobalExceptionHandler(
|
|||
|
||||
override fun uncaughtException(t: Thread, e: Throwable) {
|
||||
if (e !is HttpException) {
|
||||
// Let the default handler manage other exceptions
|
||||
Log.e("GlobalExceptionHandler", "Propgating unhandled exception", e)
|
||||
defaultHandler?.uncaughtException(t, e)
|
||||
return
|
||||
}
|
||||
|
@ -43,6 +43,7 @@ class GlobalExceptionHandler(
|
|||
return
|
||||
}
|
||||
|
||||
Log.e("GlobalExceptionHandler", "Propgating unhandled exception", e)
|
||||
defaultHandler?.uncaughtException(t, e)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue