Files
gotify-android-client/app/src/main/kotlin/com/github/gotify/log/UncaughtExceptionHandler.kt
2023-01-13 14:49:53 +01:00

12 lines
275 B
Kotlin

package com.github.gotify.log
import com.github.gotify.log.Log.e
internal object UncaughtExceptionHandler {
fun registerCurrentThread() {
Thread.setDefaultUncaughtExceptionHandler { _, e: Throwable? ->
e("uncaught exception", e!!)
}
}
}