1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-15 18:58:55 +01:00

Add a debug message when TagLib can't read a file

This commit is contained in:
Arnaud Bienner 2012-04-25 00:10:40 +02:00
parent 0904de9de9
commit fbda1f9489

View File

@ -143,6 +143,7 @@ void TagReaderWorker::ReadFile(const QString& filename,
scoped_ptr<TagLib::FileRef> fileref(factory_->GetFileRef(filename));
if(fileref->isNull()) {
qLog(Info) << "TagLib hasn't been able to read " << filename << " file";
return;
}