From aa48369679a37b998d5d910f8390575879f77bb3 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Fri, 1 Sep 2023 15:12:59 +0200 Subject: [PATCH] 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 Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/main@{#40680} --- modules/audio_device/audio_device_impl.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/audio_device/audio_device_impl.cc b/modules/audio_device/audio_device_impl.cc index c0e0de6fec..80ed928933 100644 --- a/modules/audio_device/audio_device_impl.cc +++ b/modules/audio_device/audio_device_impl.cc @@ -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; }