mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-29 19:55:37 +00:00
Changed two collections-related log warning messages.
This commit is contained in:
parent
b33c7603bb
commit
45e1a79f9e
|
@ -1459,8 +1459,7 @@ std::vector<std::string> CollectionSystemsManager::getCollectionsFromConfigFolde
|
||||||
if (std::find(filenames.cbegin(), filenames.cend(),
|
if (std::find(filenames.cbegin(), filenames.cend(),
|
||||||
Utils::String::toLower(filename)) != filenames.cend()) {
|
Utils::String::toLower(filename)) != filenames.cend()) {
|
||||||
LOG(LogWarning)
|
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 \""
|
"case filenames), skipping file \""
|
||||||
<< filename << "\"";
|
<< filename << "\"";
|
||||||
continue;
|
continue;
|
||||||
|
@ -1477,8 +1476,7 @@ std::vector<std::string> CollectionSystemsManager::getCollectionsFromConfigFolde
|
||||||
return system->getThemeFolder() == Utils::String::toLower(filename);
|
return system->getThemeFolder() == Utils::String::toLower(filename);
|
||||||
}) != SystemData::sSystemVector.cend()) {
|
}) != SystemData::sSystemVector.cend()) {
|
||||||
LOG(LogWarning)
|
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 \""
|
"the systems defined in es_systems.xml, skipping file \""
|
||||||
<< origFilename << "\"";
|
<< origFilename << "\"";
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue