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

Commit ee358a6c authored by Hyundo Moon's avatar Hyundo Moon Committed by Gerrit Code Review
Browse files

Merge "Log address in btif_gattc_open_impl" into main

parents 7a2ea233 aee4644f
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -353,8 +353,9 @@ void btif_gattc_open_impl(int client_if, RawAddress address, tBLE_ADDR_TYPE addr
  }
  }


  // Connect!
  // Connect!
  log::info("Transport={}, device type={}, address type ={}, phy={}", bt_transport_text(transport),
  log::info("Transport={}, device type={}, address={}, address type={}, phy={}",
            DeviceTypeText(device_type), addr_type, initiating_phys);
            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;
  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);
  BTA_GATTC_Open(client_if, address, addr_type, type, transport, opportunistic, initiating_phys);
}
}