:question: for people. We're on the presenter trai...
# compose
c
for people. We're on the presenter train and we see quite a few of these handled errors:
androidx.compose.runtime.LeftCompositionCancellationException: The coroutine scope left the composition
. It does seem to be expected after reading about LaunchedEffects and it leaving the tree. Was wondering if this is normal to see a lot of these nowadays? If so do people just filter them out of their logs/error handling?
g
LeftCompositionCancellationException
extends
PlatformOptimizedCancellationException
, which is simply a
kotlin.coroutines.cancellation.CancellationException
with an empty stacktrace.
CancellationException
"indicates normal cancellation of a coroutine", it should just propagate and I generally avoid logging them.
👍 1