Chris Johnson
01/07/2025, 8:29 PMandroidx.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?gmz
01/08/2025, 8:08 AMLeftCompositionCancellationException
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.