ah, I should read the docs before I post next time...
# coroutines
u
ah, I should read the docs before I post next time:
Copy code
val handler = CoroutineExceptionHandler { context, throwable ->
        println("ignoring exception: ${throwable.message}")
    }
   ...
   GlobalScope.launch(job + handler,..)