mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Change qWarning to qDebug for an expected file-does-not-exist condition
This commit is contained in:
parent
79dad50b79
commit
9642a54d04
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user