Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b63453c2 authored by Hansong Zhang's avatar Hansong Zhang
Browse files

BTM_BLE_GAP: Clean up log spam

Bug: 159815595
Tag: #refactor
Test: compile & verify basic functions working
Change-Id: I35bca19f53ca865697f810524bb911c8668e08f5
parent fafc1a9d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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");
  }
}