When I do `job.cancel`, a `CancellationException` ...
# coroutines
k
When I do
job.cancel
, a
CancellationException
will be thrown in my coroutine right? I'm asking because after implementing coroutinens, I see `CancellationException`s in my logs and I think I don't need to log those. So my question is. Should I catch `CancellationException`s and ignore them or shouldn't I catch them at all?