examples/ble_mesh: Replace printf in button.c with ESP_LOGD

This commit is contained in:
MacDue 2022-06-21 17:26:29 +01:00
parent 20f5e180ee
commit 50c6f9b00d

View File

@ -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