all: remove log.d calls

This commit is contained in:
Alexander Capehart 2024-12-21 11:37:36 -05:00
parent ef502b6f4a
commit a4cca0ca79
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 0 additions and 2 deletions

View file

@ -36,7 +36,6 @@ open class RevisionedStoredCovers(private val context: Context, private val revi
if (split.size != 2) return null
val (coverId, coverRevisionStr) = split
val coverRevision = coverRevisionStr.toUuidOrNull() ?: return null
Log.d("RevisionedStoredCovers", "$coverId $coverRevision $revision")
if (revision != null) {
if (coverRevision != revision) {
return null

View file

@ -80,7 +80,6 @@ private class EvaluateStepImpl(
merge(
filterFlow.manager,
preSongs.onEach {
Log.d("EvaluateStep", it.toString())
wrap(it, graphBuilder::add)
},
prePlaylists.onEach { wrap(it, graphBuilder::add) })