From de905babf067cb3a792ea96ee6d0b52e6ec84d66 Mon Sep 17 00:00:00 2001
From: Leon Styhre <leon@leonstyhre.com>
Date: Sun, 20 Aug 2023 21:01:23 +0200
Subject: [PATCH] Small change to two RatingComponent theme log warnings

---
 es-core/src/components/RatingComponent.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/es-core/src/components/RatingComponent.cpp b/es-core/src/components/RatingComponent.cpp
index ff6dd5012..3434771a4 100644
--- a/es-core/src/components/RatingComponent.cpp
+++ b/es-core/src/components/RatingComponent.cpp
@@ -195,7 +195,7 @@ void RatingComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
     if (elem->has("size")) {
         glm::vec2 ratingSize {elem->get<glm::vec2>("size")};
         if (ratingSize == glm::vec2 {0.0f, 0.0f}) {
-            LOG(LogWarning) << "RatingComponent: Invalid theme configuration, property <size> "
+            LOG(LogWarning) << "RatingComponent: Invalid theme configuration, property \"size\" "
                                "for element \""
                             << element.substr(7) << "\" is set to zero";
             ratingSize.y = 0.06f;
@@ -241,7 +241,7 @@ void RatingComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
             linearInterpolation = false;
 
             LOG(LogWarning)
-                << "RatingComponent: Invalid theme configuration, property <interpolation> "
+                << "RatingComponent: Invalid theme configuration, property \"interpolation\" "
                    "for element \""
                 << element.substr(7) << "\" defined as \"" << interpolation << "\"";
         }