Преглед изворни кода

Merge branch 'bugfix/change_log_level_for_print' into 'master'

Nimble : updated debug level for a print to avoid unwanted console log.

See merge request espressif/esp-idf!19108
Rahul Tank пре 3 година
родитељ
комит
f57356fcc9

+ 1 - 1
components/bt/host/nimble/nimble

@@ -1 +1 @@
-Subproject commit 74d70a94d583f031ffad2ad5e0f3f10375ebf0eb
+Subproject commit b82f26989365f15c67f229f6bd6090080cfd228e

+ 1 - 1
components/bt/porting/npl/freertos/src/npl_os_freertos.c

@@ -765,7 +765,7 @@ IRAM_ATTR npl_freertos_callout_deinit(struct ble_npl_callout *co)
     esp_err_t err = esp_timer_stop(callout->handle);
     if(err != ESP_OK) {
         if (err != ESP_ERR_INVALID_STATE) { // ESP_ERR_INVALID_STATE is expected when timer is already stopped
-            ESP_LOGW(TAG, "Timer not stopped");
+            ESP_LOGD(TAG, "Timer not stopped");
         }
     }
     err = esp_timer_delete(callout->handle);