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

Commit 39669ea4 authored by Andre Eisenbach's avatar Andre Eisenbach
Browse files

Revert "Turn down excess logging in bt hci"

This log message is likely very necessary and if you see this excessively, we will want to know about it...

This reverts commit 695d7e20.

Change-Id: Iefd46b7aab3373a1547d83c05166fa21034c51a0
parent b6fc3fd9
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -663,13 +663,12 @@ static bool filter_incoming_event(BT_HDR *packet) {
    STREAM_TO_UINT16(opcode, stream);

    wait_entry = get_waiting_command(opcode);
    if (!wait_entry) {
      //LOG_WARN(LOG_TAG, "%s command complete event with no matching command. opcode: 0x%x.", __func__, opcode);
    } else if (wait_entry->complete_callback) {
    if (!wait_entry)
      LOG_WARN(LOG_TAG, "%s command complete event with no matching command. opcode: 0x%x.", __func__, opcode);
    else if (wait_entry->complete_callback)
      wait_entry->complete_callback(packet, wait_entry->context);
    } else if (wait_entry->complete_future) {
    else if (wait_entry->complete_future)
      future_ready(wait_entry->complete_future, packet);
    }

    goto intercepted;
  } else if (event_code == HCI_COMMAND_STATUS_EVT) {