Fix logging reference to PagingData

This commit is contained in:
Kirill Kamakin
2021-11-13 12:31:16 +03:00
parent 31fc27ebef
commit dc518555e8

View File

@@ -39,7 +39,7 @@ class RecipesFragment : Fragment() {
lifecycleScope.launchWhenResumed {
Timber.d("onViewCreated: coroutine started")
viewModel.recipeFlow.collectLatest {
Timber.d("onViewCreated: received $it")
Timber.d("onViewCreated: received update")
recipesPagingAdapter.submitData(it)
}
}