From d140804dade1995775a3a964273403d0c59f33f4 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 30 Jan 2022 21:35:39 +0100 Subject: [PATCH] Adjusted a few log warning messages in ThemeData. --- es-core/src/ThemeData.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/es-core/src/ThemeData.cpp b/es-core/src/ThemeData.cpp index 4786bcab8..2c7ea2eda 100644 --- a/es-core/src/ThemeData.cpp +++ b/es-core/src/ThemeData.cpp @@ -658,7 +658,7 @@ ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string& std::string name {variant.attribute("name").as_string()}; if (name.empty()) { LOG(LogWarning) - << "Found tag without name attribute, skipping entry in \"" << capFile + << "Found tag without name attribute, ignoring entry in \"" << capFile << "\""; } else { @@ -703,7 +703,7 @@ ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string& if (triggerValue == "") { LOG(LogWarning) << "No tag value defined for variant \"" << readVariant.name - << "\", skipping entry in \"" << capFile << "\""; + << "\", ignoring entry in \"" << capFile << "\""; } else { pugi::xml_node useVariantTag {overrideTag.child("useVariant")}; @@ -712,7 +712,7 @@ ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string& if (useVariantValue == "") { LOG(LogWarning) << "No tag value defined for variant \"" - << readVariant.name << "\", skipping entry in \"" << capFile + << readVariant.name << "\", ignoring entry in \"" << capFile << "\""; } else { @@ -724,7 +724,7 @@ ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string& else { LOG(LogWarning) << "Found an tag without a corresponding " " tag, " - << "skipping entry for variant \"" << readVariant.name + << "ignoring entry for variant \"" << readVariant.name << "\" in \"" << capFile << "\""; } } @@ -732,7 +732,7 @@ ThemeData::ThemeCapability ThemeData::parseThemeCapabilities(const std::string& else { LOG(LogWarning) << "Found an tag without a corresponding tag, " - << "skipping entry for variant \"" << readVariant.name << "\" in \"" + << "ignoring entry for variant \"" << readVariant.name << "\" in \"" << capFile << "\""; } }