from a Coroutine, can I find out where the cancel originated from? Some of my coroutines are spuriously cancelled and I'm trying to find out why 🤔
g
gildor
02/08/2021, 1:52 PM
Yes, same as any other exception, but make sure that you enabled debug mode of coroutines, it will enable stacktrace recovery, so there is higher chance that your will get useful info from cancellation exception
n
Niklas Gürtler
02/08/2021, 4:00 PM
Thanks, unfortunately Coroutine debuggin seems to be unavailable on Android...