From eee1a6f37c2abeae8c57ab9505b17f1c570f7f5c Mon Sep 17 00:00:00 2001 From: Yuan Hong Hui Date: Fri, 28 Jan 2022 17:23:22 +0800 Subject: [PATCH] ble mesh:example:correct the output log level --- .../esp_ble_mesh/ble_mesh_console/main/ble_mesh_register_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_register_cmd.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_register_cmd.c index 66464adcce..9fa16c5d65 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_register_cmd.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/ble_mesh_register_cmd.c @@ -167,7 +167,7 @@ void ble_mesh_register_mesh_node(void) int ble_mesh_register_cb(int argc, char** argv) { - ESP_LOGE(TAG, "enter %s\n", __func__); + ESP_LOGD(TAG, "enter %s\n", __func__); ble_mesh_node_init(); esp_ble_mesh_register_prov_callback(ble_mesh_prov_cb); esp_ble_mesh_register_custom_model_callback(ble_mesh_model_cb);