From b63453c2598554094864edeb0c9e2f235085c143 Mon Sep 17 00:00:00 2001 From: Hansong Zhang <hsz@google.com> Date: Thu, 22 Oct 2020 15:45:50 -0700 Subject: [PATCH] BTM_BLE_GAP: Clean up log spam Bug: 159815595 Tag: #refactor Test: compile & verify basic functions working Change-Id: I35bca19f53ca865697f810524bb911c8668e08f5 --- system/stack/btm/btm_ble_gap.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/stack/btm/btm_ble_gap.cc b/system/stack/btm/btm_ble_gap.cc index 0e482058020..176eed2eca4 100644 --- a/system/stack/btm/btm_ble_gap.cc +++ b/system/stack/btm/btm_ble_gap.cc @@ -1565,13 +1565,13 @@ void btm_ble_update_inq_result(tINQ_DB_ENT* p_i, uint8_t addr_type, if ((p_cur->flag & BTM_BLE_BREDR_NOT_SPT) == 0 && !ble_evt_type_is_directed(evt_type)) { if (p_cur->ble_addr_type != BLE_ADDR_RANDOM) { - LOG_INFO("NOT_BR_EDR support bit not set, treat device as DUMO"); + LOG_VERBOSE("NOT_BR_EDR support bit not set, treat device as DUMO"); p_cur->device_type |= BT_DEVICE_TYPE_DUMO; } else { - LOG_INFO("Random address, treat device as LE only"); + LOG_VERBOSE("Random address, treat device as LE only"); } } else { - LOG_INFO("NOT_BR/EDR support bit set, treat device as LE only"); + LOG_VERBOSE("NOT_BR/EDR support bit set, treat device as LE only"); } } -- GitLab