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

Commit 46ac3919 authored by Jeremy Wu's avatar Jeremy Wu
Browse files

Floss: make spamming LE audio logs verbose

This CL suppresses some of the spamming logs in LE audio.

Bug: 317682584
Test: m Bluetooth
Change-Id: I71589890da92f524205c78a6c773bb1e86ee4fbe
parent 8e094fe6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -278,7 +278,8 @@ size_t LeAudioClientInterface::Sink::Read(uint8_t* p_buf, uint32_t len) {
  uint32_t bytes_read = 0;
  bytes_read = UIPC_Read(*lea_uipc, UIPC_CH_ID_AV_AUDIO, p_buf, len);

  log::info("");
  // TODO(b/317682986): grab meaningful statistics for logs and metrics
  log::verbose("Read {} bytes", bytes_read);

  return bytes_read;
}