Commit b809609 1 parent 8c2b5e9 commit b809609 Copy full SHA for b809609
File tree 1 file changed +3
-3
lines changed
app/src/main/java/com/OxGames/Pluvia/ui/model
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class LibraryViewModel @Inject constructor(
43
43
steamAppDao.getAllOwnedApps(
44
44
ownerIds = SteamService .familyMembers.ifEmpty { listOf (SteamService .userSteamId!! .accountID.toInt()) },
45
45
).collect { apps ->
46
- Timber .d(" Collecting ${apps.size} apps" )
46
+ Timber .tag( " LibraryViewModel " ). d(" Collecting ${apps.size} apps" )
47
47
48
48
appList = apps
49
49
@@ -88,7 +88,7 @@ class LibraryViewModel @Inject constructor(
88
88
}
89
89
90
90
private fun onFilterApps () {
91
- Timber .d(" onFilterApps" )
91
+ Timber .tag( " LibraryViewModel " ). d(" onFilterApps" )
92
92
viewModelScope.launch {
93
93
val currentState = _state .value
94
94
val currentFilter = AppFilter .getAppType(currentState.appInfoSortType)
@@ -130,7 +130,7 @@ class LibraryViewModel @Inject constructor(
130
130
}
131
131
.toList()
132
132
133
- Timber .d(" Filtered list size: ${filteredList.size} " )
133
+ Timber .tag( " LibraryViewModel " ). d(" Filtered list size: ${filteredList.size} " )
134
134
_state .update { it.copy(appInfoList = filteredList) }
135
135
}
136
136
}
You can’t perform that action at this time.
0 commit comments