Skip to content
Snippets Groups Projects
Commit b2e1eb84 authored by q3k's avatar q3k
Browse files

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.
parent 9da8a3ea
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ static void xQueueReceiveNotifyStarved(QueueHandle_t q, void *dst, ...@@ -62,7 +62,7 @@ static void xQueueReceiveNotifyStarved(QueueHandle_t q, void *dst,
return; return;
} }
if (!starved) { if (!starved) {
ESP_LOGE(TAG, "%s", desc); ESP_LOGI(TAG, "%s", desc);
starved = 1; starved = 1;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment