updated decoder debug messages

This commit is contained in:
itsmattkc
2019-10-26 15:33:25 +11:00
parent 4d96ac9e39
commit 3fb53586d4
+2 -2
View File
@@ -75,13 +75,13 @@ bool Decoder::ProbeMedia(Footage *f)
{
// Check for a valid filename
if (f->filename().isEmpty()) {
qWarning() << QCoreApplication::translate("ProbeMedia", "Tried to probe media with an empty filename");
qWarning() << "Tried to probe media with an empty filename";
return false;
}
// Check file exists
if (!QFileInfo::exists(f->filename())) {
qWarning() << QCoreApplication::translate("ProbeMedia", "Tried to probe file that doesn't exist");
qWarning() << "Tried to probe file that doesn't exist:" << f->filename();
return false;
}