Browse Source

CodecsComponent: log where a codec is written to

Just for debugging.
Vincent Lang 8 years ago
parent
commit
ce3f92f69e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/player/CodecsComponent.cpp

+ 2 - 0
src/player/CodecsComponent.cpp

@@ -582,6 +582,8 @@ void CodecsFetcher::processCodecDownloadDone(const QByteArray& data, const Codec
     return;
   }
 
+  QLOG_INFO() << "Storing codec as" << codec.getPath();
+
   if (!Utils::safelyWriteFile(codec.getPath(), data))
   {
     QLOG_ERROR() << "Writing codec file failed.";