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

Commit aee4644f authored by Hyundo Moon's avatar Hyundo Moon
Browse files

Log address in btif_gattc_open_impl

Bug: 360260080
Test: m -j;
Flag: EXEMPT, log change
Change-Id: If05d70cb436023bfcb6ad2fc422c484eb35ce413
parent a5d6ceb1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -353,8 +353,9 @@ void btif_gattc_open_impl(int client_if, RawAddress address, tBLE_ADDR_TYPE addr
  }

  // Connect!
  log::info("Transport={}, device type={}, address type ={}, phy={}", bt_transport_text(transport),
            DeviceTypeText(device_type), addr_type, initiating_phys);
  log::info("Transport={}, device type={}, address={}, address type={}, phy={}",
            bt_transport_text(transport), DeviceTypeText(device_type),
            address, addr_type, initiating_phys);
  tBTM_BLE_CONN_TYPE type = is_direct ? BTM_BLE_DIRECT_CONNECTION : BTM_BLE_BKG_CONNECT_ALLOW_LIST;
  BTA_GATTC_Open(client_if, address, addr_type, type, transport, opportunistic, initiating_phys);
}