Remove excessive logs from ADM's GetPlayoutUnderrunCount.

Bug: b/298579155
Change-Id: If98a27934feba58c32dfa9a965f99fe27a11361e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/318621
Reviewed-by: Henrik Andreassson <henrika@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#40680}
This commit is contained in:
Mirko Bonadei 2023-09-01 15:12:59 +02:00 committed by WebRTC LUCI CQ
parent fd7b27ef67
commit aa48369679

View file

@ -872,10 +872,8 @@ int32_t AudioDeviceModuleImpl::EnableBuiltInNS(bool enable) {
}
int32_t AudioDeviceModuleImpl::GetPlayoutUnderrunCount() const {
RTC_LOG(LS_INFO) << __FUNCTION__;
CHECKinitialized_();
int32_t underrunCount = audio_device_->GetPlayoutUnderrunCount();
RTC_LOG(LS_INFO) << "output: " << underrunCount;
return underrunCount;
}