We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69cc03 commit fee0361Copy full SHA for fee0361
core-ui/src/main/java/com/hoc/flowmvi/core_ui/CollectIn.kt
@@ -9,7 +9,6 @@ import kotlinx.coroutines.Job
9
import kotlinx.coroutines.flow.Flow
10
import kotlinx.coroutines.flow.collect
11
import kotlinx.coroutines.launch
12
-import timber.log.Timber
13
14
inline fun <T> Flow<T>.collectIn(
15
owner: LifecycleOwner,
@@ -18,7 +17,6 @@ inline fun <T> Flow<T>.collectIn(
18
17
): Job =
19
owner.lifecycleScope.launch {
20
owner.repeatOnLifecycle(state = minActiveState) {
21
- Timber.d("Start collecting $owner $minActiveState...")
22
collect { action(it) }
23
}
24
0 commit comments