From 45e1a79f9e61a439a0fb775886e9ce6f2d397983 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Tue, 7 Feb 2023 18:05:11 +0100 Subject: [PATCH] Changed two collections-related log warning messages. --- es-app/src/CollectionSystemsManager.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/es-app/src/CollectionSystemsManager.cpp b/es-app/src/CollectionSystemsManager.cpp index 47bb420fd..bac6bb0f3 100644 --- a/es-app/src/CollectionSystemsManager.cpp +++ b/es-app/src/CollectionSystemsManager.cpp @@ -1459,8 +1459,7 @@ std::vector CollectionSystemsManager::getCollectionsFromConfigFolde if (std::find(filenames.cbegin(), filenames.cend(), Utils::String::toLower(filename)) != filenames.cend()) { LOG(LogWarning) - << "CollectionSystemsManager::getCollectionsFromConfigFolder():" - " Found a custom collection configuration file name conflict (mixed " + << "Found a custom collection configuration file name conflict (mixed " "case filenames), skipping file \"" << filename << "\""; continue; @@ -1477,8 +1476,7 @@ std::vector CollectionSystemsManager::getCollectionsFromConfigFolde return system->getThemeFolder() == Utils::String::toLower(filename); }) != SystemData::sSystemVector.cend()) { LOG(LogWarning) - << "CollectionSystemsManager::getCollectionsFromConfigFolder():" - " Custom collection name conflicts with a theme folder for one of " + << "Custom collection name conflicts with a theme folder for one of " "the systems defined in es_systems.xml, skipping file \"" << origFilename << "\""; continue;