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

Commit 3625a1ce authored by Himanshu Rawat's avatar Himanshu Rawat Committed by Gerrit Code Review
Browse files

Merge "Log granualar reason for ignoring pairing approval" into main

parents 8744728c c7c19523
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1329,8 +1329,10 @@ void BTM_ConfirmReqReply(tBTM_STATUS res, const RawAddress& bd_addr) {
  if ((btm_cb.pairing_state != BTM_PAIR_STATE_WAIT_NUMERIC_CONFIRM) ||
      (btm_cb.pairing_bda != bd_addr)) {
    LOG_WARN(
        "Ignore confirm request reply as bonding has been canceled or timer "
        "expired");
        "Unexpected pairing confirm for %s, pairing_state: %s, pairing_bda: %s",
        ADDRESS_TO_LOGGABLE_CSTR(bd_addr),
        btm_pair_state_descr(btm_cb.pairing_state),
        ADDRESS_TO_LOGGABLE_CSTR(btm_cb.pairing_bda));
    return;
  }