Changed logging from Warning to Info when missing the es_systems.cfg file.

This commit is contained in:
Leon Styhre 2021-01-10 21:55:33 +01:00
parent b361da6e1e
commit 9f04f1419c

View file

@ -231,7 +231,7 @@ bool SystemData::loadConfig()
const std::string rompath = FileData::getROMDirectory();
if (!Utils::FileSystem::exists(path)) {
LOG(LogWarning) << "Systems configuration file does not exist";
LOG(LogInfo) << "Systems configuration file does not exist";
if (copyConfigTemplate(getConfigPath(true)))
return false;
path = getConfigPath(false);