Changed a system loading log entry from warning to debug level.

This commit is contained in:
Leon Styhre 2022-04-05 17:50:47 +02:00
parent aed9c4abe5
commit 9802538464

View file

@ -461,8 +461,8 @@ bool SystemData::loadConfig()
auto nameFindFunc = [&] {
for (auto system : sSystemVector) {
if (system->mName == name) {
LOG(LogWarning) << "A system with the name \"" << name
<< "\" has already been loaded, skipping duplicate entry";
LOG(LogDebug) << "A system with the name \"" << name
<< "\" has already been loaded, skipping duplicate entry";
return true;
}
}