diff --git a/components/bt/bt.c b/components/bt/bt.c index 8d64e06841..6bf353e63e 100644 --- a/components/bt/bt.c +++ b/components/bt/bt.c @@ -1511,16 +1511,13 @@ esp_err_t esp_bt_controller_deinit(void) static void bt_shutdown(void) { esp_err_t ret = ESP_OK; - ESP_LOGD(BTDM_LOG_TAG, "stop/deinit bt"); + ESP_LOGD(BTDM_LOG_TAG, "stop Bluetooth"); ret = esp_bt_controller_disable(); if (ESP_OK != ret) { ESP_LOGW(BTDM_LOG_TAG, "controller disable ret=%d", ret); } ret = esp_bt_controller_deinit(); - if (ESP_OK != ret) { - ESP_LOGW(BTDM_LOG_TAG, "controller deinit ret=%d", ret); - } return; }