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& theme, if (elem->has("size")) { glm::vec2 ratingSize {elem->get("size")}; if (ratingSize == glm::vec2 {0.0f, 0.0f}) { - LOG(LogWarning) << "RatingComponent: Invalid theme configuration, property " + 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& theme, linearInterpolation = false; LOG(LogWarning) - << "RatingComponent: Invalid theme configuration, property " + << "RatingComponent: Invalid theme configuration, property \"interpolation\" " "for element \"" << element.substr(7) << "\" defined as \"" << interpolation << "\""; }