i am trying to get my logging to show coroutine na...
# coroutines
n
i am trying to get my logging to show coroutine names when i start my ktor app with
-Dkotlinx.coroutines.debug
i do
laucnch(CoroutineName("a-name")){}
but my logger still insists it is
DefaultDispatcher-worker-2
i think the pattern
%thread
(logback) worked before is there anything i am missing or should be careful with ? i also tried setting the system property
Copy code
System.setProperty(DEBUG_PROPERTY_NAME, DEBUG_PROPERTY_VALUE_ON)
but it seems to make no difference