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

Commit ba04c4a4 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

Re-log btif/src/btif_config::btif_get_address_type am: 4d345e1d am: 8ea3e656

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1480916

Change-Id: Ic20d2bb9ff964198e66e004c531ec85c7fbb26d0
parents 9a1f821c 8ea3e656
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -150,7 +150,8 @@ bool btif_get_address_type(const RawAddress& bda, tBLE_ADDR_TYPE* p_addr_type) {
  if (!btif_config_get_int(bd_addr_str, "AddrType", &val)) return false;
  *p_addr_type = static_cast<tBLE_ADDR_TYPE>(val);

  LOG_INFO("Device [%s] address type %d", bd_addr_str, *p_addr_type);
  LOG_DEBUG("Device [%s] address type %s", bd_addr_str,
            AddressTypeText(*p_addr_type).c_str());
  return true;
}