Exerosis
05/26/2022, 8:29 PMcoroutineScope {
println("Entered scope")
launch {
println("why not??: ${Thread.currentThread().name}")
}
}
How can I debug this printing nothing at all? I do have a non standard CorountineContext: https://srcb.in/y7TGICTNxq
However, it seems to work with everything else so I'm not sure what I'm doing wrong here.Richard Gomez
05/26/2022, 9:40 PMprintln
never happening or the printing no thread name?Exerosis
05/27/2022, 12:24 AMprintln
output anything.Pavel
05/27/2022, 5:02 AMExerosis
05/29/2022, 5:03 AMfun main() = runBlocking {
...
delay(1.days)
}
So I'm sure I'm not exiting early.Exerosis
05/30/2022, 12:01 AM