[kotlin debugger] in coroutines 1.8 creation stacktraces are disabled by default, enable it explicitly for now only in debug mode

GitOrigin-RevId: 2b9b76e629ac52adf4af56484e0fba0e8661f636
This commit is contained in:
Egor Ushakov
2024-04-17 12:22:39 +02:00
committed by intellij-monorepo-bot
parent c9d09753a9
commit da7debd54c
3 changed files with 5 additions and 9 deletions

View File

@@ -37,7 +37,6 @@ fun isCoroutineDumpEnabled(): Boolean {
@Internal
fun enableCoroutineDump(): Result<Unit> {
return runCatching {
DebugProbes.enableCreationStackTraces = false
DebugProbes.install()
}
}