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

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

HfpClientInterface: r/w logs to verbose level

r/w operations are too spammy and is often not of interest. This CL
changes the level from info to verbose.

Bug: 349290628
Test: m com.google.android.btservices
Flag: EXEMPT, trivial log level change
Change-Id: I03eb0c6ab1312f34ad7e64c9099d359245f269e9
parent a56cd183
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ size_t HfpClientInterface::Decode::Write(const uint8_t* p_buf, uint32_t len) {
    log::warn("Unsupported HIDL or AIDL version");
    return 0;
  }
  log::info("decode");
  log::verbose("decode");
  return get_decode_client_interface()->WriteAudioData(p_buf, len);
}

@@ -348,7 +348,7 @@ size_t HfpClientInterface::Encode::Read(uint8_t* p_buf, uint32_t len) {
    log::warn("Unsupported HIDL or AIDL version");
    return 0;
  }
  log::info("encode");
  log::verbose("encode");
  return get_encode_client_interface()->ReadAudioData(p_buf, len);
}