From 9802538464ed5c7efb079289f4cf4c867c9b8c1b Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 5 Apr 2022 17:50:47 +0200 Subject: [PATCH] Changed a system loading log entry from warning to debug level. --- es-app/src/SystemData.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/SystemData.cpp b/es-app/src/SystemData.cpp index 0e64fa4d2..74cfdc4ca 100644 --- a/es-app/src/SystemData.cpp +++ b/es-app/src/SystemData.cpp @@ -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; } }