Is it possible to turn on the stack trace recovery...
# coroutines
a
Is it possible to turn on the stack trace recovery on Android? I'm finding it very difficult to understand the issue based on what's printed by default.
g
Copy code
System.setProperty("kotlinx.coroutines.debug", "on")
m
@Gabriel Feo I would think that's like that because of issue like those: https://kotlinlang.slack.com/archives/C1CFAFJSK/p1567970095254000 But there are also some other messages that state the opposite: https://kotlinlang.slack.com/archives/C1CFAFJSK/p1568708704051600?thread_ts=1568706878.049500&cid=C1CFAFJSK
a
@Gabriel Feo thanks, unfortunatelly this doesn't change the stack trace. Do I need the debug module as well?
g
@Adam Grzybkowski, there's no extra dependency AFAIK. I'm enabling the property in my Application's
onCreate