How can I get the name of the failed Child Corouti...
# coroutines
s
How can I get the name of the failed Child Coroutine in a CoroutineExceptionHandler? If I add a CoroutineExceptionHandler to my scope when nesting Coroutines and then in the ExceptionHandler get the CoroutineName from the Context, the name will be the one of the parent Coroutine and not the child that failed. But i want to know what child failed. Is it not possible to get the Context of the failed Coroutine? I have simplified my problem to this code that runs and shows the issue: https://pl.kotl.in/3ZOpR_eyx