From b2e1eb8422cad13a67647a10523f6c1d75dd3443 Mon Sep 17 00:00:00 2001 From: Serge Bazanski <q3k@q3k.org> Date: Sun, 13 Aug 2023 02:26:04 +0200 Subject: [PATCH] st3m: demote graphics pipeline starvation errors to info This was useful during development, but is just a nuisance when trying to use the badge REPL now. --- components/st3m/st3m_gfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/st3m/st3m_gfx.c b/components/st3m/st3m_gfx.c index 5cf72a67d4..836664973e 100644 --- a/components/st3m/st3m_gfx.c +++ b/components/st3m/st3m_gfx.c @@ -62,7 +62,7 @@ static void xQueueReceiveNotifyStarved(QueueHandle_t q, void *dst, return; } if (!starved) { - ESP_LOGE(TAG, "%s", desc); + ESP_LOGI(TAG, "%s", desc); starved = 1; } } -- GitLab