From 3fb53586d40aff18fa0159084066c161bd942f24 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sat, 26 Oct 2019 15:33:25 +1100 Subject: [PATCH] updated decoder debug messages --- app/decoder/decoder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/decoder/decoder.cpp b/app/decoder/decoder.cpp index 2df89cb01..02ddd83c4 100644 --- a/app/decoder/decoder.cpp +++ b/app/decoder/decoder.cpp @@ -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; }