musikr: remove extractstep debug logging

Not needed right now
This commit is contained in:
Alexander Capehart 2025-01-08 15:05:50 -07:00
parent f8ec77e137
commit 802e215482
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -117,16 +117,10 @@ private class ExtractStepImpl(
val metadata =
fds.mapNotNull { fileWith ->
wrap(fileWith.file) { _ ->
Log.d("ExtractStep", "Extracting ${fileWith.file.path}")
metadataExtractor
.extract(fileWith.with)
?.let { FileWith(fileWith.file, it) }
.also {
if (it == null) {
Log.d(
"ExtractStep",
"Failed to extract metadata for ${fileWith.file.path}")
}
withContext(Dispatchers.IO) { fileWith.with.close() }
}
}