12 lines
275 B
Kotlin
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!!)
|
|
}
|
|
}
|
|
}
|