From 9642a54d04bff24cabfa2b6f11219a58f911e42e Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Wed, 19 Aug 2020 17:09:41 -0700 Subject: [PATCH] Change qWarning to qDebug for an expected file-does-not-exist condition --- oscar/statistics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index 69a3072c..bee15dae 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -118,7 +118,7 @@ void Statistics::loadRXChanges() QString path = p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" ); QFile file(path); if (!file.open(QFile::ReadOnly)) { - qWarning() << "Could not open" << path << "for reading, error code" << file.error() << file.errorString(); + qDebug() << "Could not open" << path << "for reading, error code" << file.error() << file.errorString(); return; } QDataStream in(&file);