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

Commit 15a1f5e5 authored by Jeremy Wu's avatar Jeremy Wu
Browse files

Floss: lower log verbosity of |UIPC_Send|

There is little interest in general to see all occurences of this
function call, and it could spam report logs really bad.

This CL lowers its verbosity.

Bug: 329298322
Test: m Bluetooth
Flag: EXEMPT log verbosity change
Change-Id: I907844759dbfd3066f3499e0bed174ce38463828
parent d02a9b96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -579,7 +579,7 @@ void UIPC_Close(tUIPC_STATE& uipc, tUIPC_CH_ID ch_id) {
bool UIPC_Send(tUIPC_STATE& uipc, tUIPC_CH_ID ch_id,
               UNUSED_ATTR uint16_t msg_evt, const uint8_t* p_buf,
               uint16_t msglen) {
  LOG_DEBUG("UIPC_Send : ch_id:%d %d bytes", ch_id, msglen);
  LOG_VERBOSE("UIPC_Send : ch_id:%d %d bytes", ch_id, msglen);

  std::lock_guard<std::recursive_mutex> lock(uipc.mutex);