musikr: remove extractstep debug logging
Not needed right now
This commit is contained in:
parent
f8ec77e137
commit
802e215482
1 changed files with 0 additions and 6 deletions
|
@ -117,16 +117,10 @@ private class ExtractStepImpl(
|
||||||
val metadata =
|
val metadata =
|
||||||
fds.mapNotNull { fileWith ->
|
fds.mapNotNull { fileWith ->
|
||||||
wrap(fileWith.file) { _ ->
|
wrap(fileWith.file) { _ ->
|
||||||
Log.d("ExtractStep", "Extracting ${fileWith.file.path}")
|
|
||||||
metadataExtractor
|
metadataExtractor
|
||||||
.extract(fileWith.with)
|
.extract(fileWith.with)
|
||||||
?.let { FileWith(fileWith.file, it) }
|
?.let { FileWith(fileWith.file, it) }
|
||||||
.also {
|
.also {
|
||||||
if (it == null) {
|
|
||||||
Log.d(
|
|
||||||
"ExtractStep",
|
|
||||||
"Failed to extract metadata for ${fileWith.file.path}")
|
|
||||||
}
|
|
||||||
withContext(Dispatchers.IO) { fileWith.with.close() }
|
withContext(Dispatchers.IO) { fileWith.with.close() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue