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

Commit e923cf2d authored by Jeremy Wu's avatar Jeremy Wu
Browse files

log: fix debug log for |btm_read_rssi_complete|

Bug: 336602747
Test: m Bluetooth
Flag: EXEMPT no-op log change
Change-Id: I1f7a47687e0ee5eb5eddb45d4761b3a4188c2100
parent 8d9a7145
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1882,7 +1882,8 @@ void btm_read_rssi_complete(uint8_t* p, uint16_t evt_len) {
      STREAM_TO_UINT16(handle, p);

      STREAM_TO_UINT8(result.rssi, p);
      log::debug("Read rrsi complete rssi:%hhd hci status:{}", result.rssi);
      log::debug("Read rrsi complete rssi:{} hci status:{}", result.rssi,
                 hci_status_code_text(to_hci_status_code(result.hci_status)));

      tACL_CONN* p_acl_cb = internal_.acl_get_connection_from_handle(handle);
      if (p_acl_cb != nullptr) {