Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/library/coverart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,14 @@ QImage CoverInfo::loadImage(
}
DEBUG_ASSERT(coverFile.isAbsolute());
if (!coverFile.exists()) {
kLogger.warning()
<< "loadImage"
<< type
<< "cover does not exist:"
<< coverFile.filePath();
// Disabled because this code can cause high CPU and thus possibly
// xruns as it might print the warning repeatedly.
// ToDo: Print warning about missing cover image only once.
// kLogger.warning()
// << "loadImage"
// << type
// << "cover does not exist:"
// << coverFile.filePath();
return QImage();
}
SecurityTokenPointer pToken =
Expand Down