From 3a91da5e52496ca5fd21871489efabef42255b43 Mon Sep 17 00:00:00 2001 From: Charles Crossan Date: Mon, 22 Feb 2021 21:00:05 -0500 Subject: [PATCH] remove UI render comment log spam --- src/graphics/Screen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 80fd807c..8f974a4c 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -164,9 +164,9 @@ static void drawPluginFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int else { // otherwise, just display the plugin frame that's aligned with the current frame plugin_frame = state->currentFrame; - DEBUG_MSG("Screen is not in transition. Frame: %d\n\n", plugin_frame); + //DEBUG_MSG("Screen is not in transition. Frame: %d\n\n", plugin_frame); } - DEBUG_MSG("Drawing Plugin Frame %d\n\n", plugin_frame); + //DEBUG_MSG("Drawing Plugin Frame %d\n\n", plugin_frame); MeshPlugin &pi = *pluginFrames.at(plugin_frame); pi.drawFrame(display,state,x,y);