https://kotlinlang.org logo
#coroutines
Title
# coroutines
d

deviant

03/18/2017, 2:52 PM
are there any best practices how to debug coroutines/channels in idea/AS debugger? for example, how to determine the amount of currently running coroutines?
e

elizarov

03/18/2017, 3:25 PM
Better debugging experience is on our todo list of improvements. Being able to see a list of running coroutines (and what they are doing) is this one big item in particular. There's nothing much else that you can do, but add logging statements and put breakpoints to help you with debugging.
👌 4
3 Views