From 54df6a5520dcf1700103c6e956b8a866bc70f382 Mon Sep 17 00:00:00 2001 From: Sophia Hadash Date: Sun, 22 Aug 2021 16:43:48 +0200 Subject: [PATCH] remove debug logs --- es-core/src/components/HelpComponent.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/es-core/src/components/HelpComponent.cpp b/es-core/src/components/HelpComponent.cpp index 6f036d859..5d0138d13 100644 --- a/es-core/src/components/HelpComponent.cpp +++ b/es-core/src/components/HelpComponent.cpp @@ -124,14 +124,11 @@ void HelpComponent::updateGrid() // State variable indicating whether gui is dimmed. bool isDimmed = mWindow->isBackgroundDimmed(); - LOG(LogError) << "updateGrid() called. dimmed = \"" << isDimmed << "\""; for (auto it = mPrompts.cbegin(); it != mPrompts.cend(); it++) { auto icon = std::make_shared(mWindow); icon->setImage(getIconTexture(it->first.c_str())); icon->setColorShift(isDimmed ? mStyle.iconColorDimmed : mStyle.iconColor); - LOG(LogError) << "setColorShift() called. dimmed = \"" - << (isDimmed ? mStyle.iconColorDimmed : mStyle.iconColor) << "\""; icon->setResize(0, height); icons.push_back(icon);