Change qWarning to qDebug for an expected file-does-not-exist condition

This commit is contained in:
Guy Scharf 2020-08-19 17:09:41 -07:00
parent 79dad50b79
commit 9642a54d04

View File

@ -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);