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

Commit bcb4ccd3 authored by Chris Manton's avatar Chris Manton
Browse files

Properly log btm_read_failed_contact_counter_complete

Bug: 179120287
Test: gd/cert/run
Tag: #refactor
BYPASS_LONG_LINES_REASON: Bluetooth likes 120 lines

Change-Id: I6501d6cfc3193d2e6ae9196b89321f0c857946f9
parent c2826e6d
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -1828,9 +1828,10 @@ void btm_read_failed_contact_counter_complete(uint8_t* p) {
      STREAM_TO_UINT16(handle, p);

      STREAM_TO_UINT16(result.failed_contact_counter, p);
      LOG_DEBUG("Failed contact counter complete: counter %u, hci status:%s",
      LOG_DEBUG(
          "Failed contact counter complete: counter %u, hci status:%s",
          result.failed_contact_counter,
                RoleText(result.hci_status).c_str());
          hci_status_code_text(to_hci_status_code(result.hci_status)).c_str());

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