Skip to content

Commit 22c7809

Browse files
committed
Print stack trace in default exception handler in K/N
1 parent b5af3ef commit 22c7809

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

native/kotlinx-coroutines-core-native/src/CoroutineExceptionHandlerImpl.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ import kotlin.coroutines.*
88

99
internal actual fun handleCoroutineExceptionImpl(context: CoroutineContext, exception: Throwable) {
1010
// log exception
11-
println(exception)
11+
exception.printStackTrace()
1212
}

0 commit comments

Comments
 (0)