From 50c6f9b00d67e853ed23ee9faf7cbd7227d746c6 Mon Sep 17 00:00:00 2001 From: MacDue Date: Tue, 21 Jun 2022 17:26:29 +0100 Subject: [PATCH] examples/ble_mesh: Replace printf in button.c with ESP_LOGD --- .../bluetooth/esp_ble_mesh/common_components/button/button.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bluetooth/esp_ble_mesh/common_components/button/button.c b/examples/bluetooth/esp_ble_mesh/common_components/button/button.c index 53cfb2ab7f..c9214dba7f 100644 --- a/examples/bluetooth/esp_ble_mesh/common_components/button/button.c +++ b/examples/bluetooth/esp_ble_mesh/common_components/button/button.c @@ -269,7 +269,7 @@ esp_err_t iot_button_delete(button_handle_t btn_handle) button_handle_t iot_button_create(gpio_num_t gpio_num, button_active_t active_level) { #if USE_ESP_TIMER - esp_rom_printf("use esp timer !!!\n"); + ESP_LOGD(TAG, "Using ESP timer"); esp_timer_init(); #endif