component/bt: remove some error logs which are not error

This commit is contained in:
baohongde
2018-01-17 19:23:41 +08:00
parent 17e8d49f26
commit 569b9d592e
16 changed files with 63 additions and 66 deletions

View File

@@ -760,7 +760,7 @@ static void esp_gap_cb(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *par
case ESP_GAP_BLE_SCAN_START_COMPLETE_EVT:
//scan start complete event to indicate scan start successfully or failed
if (param->scan_start_cmpl.status == ESP_BT_STATUS_SUCCESS) {
ESP_LOGE(GATTC_TAG, "Scan start success");
ESP_LOGI(GATTC_TAG, "Scan start success");
}else{
ESP_LOGE(GATTC_TAG, "Scan start failed");
}