Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Unified Diff: webrtc/modules/audio_device/android/audio_device_template.h

Issue 2202243004: Remove VERBOSE logs in (android) audio device code. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_device/audio_device_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_device/android/audio_device_template.h
diff --git a/webrtc/modules/audio_device/android/audio_device_template.h b/webrtc/modules/audio_device/android/audio_device_template.h
index 31b1cf794f6cc88d3509c41743773415832a33f5..40e15ca357cb6dbcc351de936e47962bb01a9a38 100644
--- a/webrtc/modules/audio_device/android/audio_device_template.h
+++ b/webrtc/modules/audio_device/android/audio_device_template.h
@@ -216,7 +216,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric {
}
bool Recording() const override {
- LOG(LS_VERBOSE) << __FUNCTION__;
return input_.Recording() ;
}
@@ -421,7 +420,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric {
int32_t PlayoutDelay(uint16_t& delay_ms) const override {
// Best guess we can do is to use half of the estimated total delay.
delay_ms = audio_manager_->GetDelayEstimateInMilliseconds() / 2;
- LOG(LS_VERBOSE) << __FUNCTION__ << " delay = " << delay_ms;
RTC_DCHECK_GT(delay_ms, 0);
return 0;
}
@@ -440,22 +438,18 @@ class AudioDeviceTemplate : public AudioDeviceGeneric {
}
bool PlayoutWarning() const override {
- LOG(LS_VERBOSE) << __FUNCTION__;
return false;
}
bool PlayoutError() const override {
- LOG(LS_VERBOSE) << __FUNCTION__;
return false;
}
bool RecordingWarning() const override {
- LOG(LS_VERBOSE) << __FUNCTION__;
return false;
}
bool RecordingError() const override {
- LOG(LS_VERBOSE) << __FUNCTION__;
return false;
}
« no previous file with comments | « no previous file | webrtc/modules/audio_device/audio_device_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698