Update log descriptions to match the new deleted flow

This commit is contained in:
Vitor Pamplona
2025-08-06 17:57:46 -04:00
parent 481db7ebeb
commit b1566d8f8b
2 changed files with 2 additions and 2 deletions

View File

@@ -1231,7 +1231,7 @@ class AccountViewModel(
if (isDebug) {
Log.d(
"Rendering Metrics",
"Update feeds ${this@AccountViewModel} for ${account.userProfile().toBestDisplayName()} with ${newNotes.size} new notes",
"Delete feeds ${this@AccountViewModel} for ${account.userProfile().toBestDisplayName()} with ${newNotes.size} new notes",
)
}
logTime("AccountViewModel deletedEventBundle Update with ${newNotes.size} new notes") {

View File

@@ -107,7 +107,7 @@ open class StringFeedViewModel(
}
viewModelScope.launch(Dispatchers.Default) {
LocalCache.live.deletedEventBundles.collect { newNotes ->
Log.d("Rendering Metrics", "Update feeds: ${this@StringFeedViewModel.javaClass.simpleName} with ${newNotes.size}")
Log.d("Rendering Metrics", "Delete feeds: ${this@StringFeedViewModel.javaClass.simpleName} with ${newNotes.size}")
invalidateData()
}
}