optimize some log entries

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-09-14 00:43:02 +02:00
parent e17e2504d7
commit 9df2b28eb3
2 changed files with 9 additions and 12 deletions

View File

@@ -144,7 +144,7 @@ static void handle_button(uint8_t button)
break;
default:
ESP_LOGI(TAG, "Unhandled button: %u", button);
ESP_LOGE(TAG, "Unhandled button: %u", button);
break;
}
}
@@ -158,7 +158,7 @@ void app_task(void *args)
.mode = LED_MODE_BLINK, .color = {.r = 50, .g = 0, .b = 0}, .on_time_ms = 1000, .off_time_ms = 500};
led_status_set_behavior(0, led0_behavior);
ESP_DIAG_EVENT(TAG, "Display not found on I2C bus");
ESP_LOGE(TAG, "Display not found on I2C bus");
vTaskDelete(nullptr);
return;
}