From b82f26989365f15c67f229f6bd6090080cfd228e Mon Sep 17 00:00:00 2001 From: Roshan Bangar Date: Wed, 17 Aug 2022 14:09:06 +0530 Subject: [PATCH] NimBLE: Updated debug level for a print to avoid unwanted console log. --- porting/npl/freertos/src/npl_os_freertos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/porting/npl/freertos/src/npl_os_freertos.c b/porting/npl/freertos/src/npl_os_freertos.c index a7c2aa98f..4c3e68bd8 100644 --- a/porting/npl/freertos/src/npl_os_freertos.c +++ b/porting/npl/freertos/src/npl_os_freertos.c @@ -770,7 +770,7 @@ IRAM_ATTR npl_freertos_callout_deinit(struct ble_npl_callout *co) #if CONFIG_BT_NIMBLE_USE_ESP_TIMER if(esp_timer_stop(callout->handle)) - ESP_LOGW(TAG, "Timer not stopped"); + ESP_LOGD(TAG, "Timer not stopped"); if(esp_timer_delete(callout->handle)) ESP_LOGW(TAG, "Timer not deleted");