diff --git a/modules/audio_processing/agc/agc_manager_direct.cc b/modules/audio_processing/agc/agc_manager_direct.cc index 999e19b6b8..1428d2a0e7 100644 --- a/modules/audio_processing/agc/agc_manager_direct.cc +++ b/modules/audio_processing/agc/agc_manager_direct.cc @@ -244,13 +244,8 @@ void MonoAgc::SetLevel(int new_level) { } stream_analog_level_ = new_level; - RTC_DLOG(LS_INFO) << "[agc] voe_level=" << voe_level - << ", " - "level_=" - << level_ - << ", " - "new_level=" - << new_level; + RTC_DLOG(LS_INFO) << "[agc] voe_level=" << voe_level << ", level_=" << level_ + << ", new_level=" << new_level; level_ = new_level; } diff --git a/modules/audio_processing/audio_processing_unittest.cc b/modules/audio_processing/audio_processing_unittest.cc index 2f557e5c70..3ff3b33edd 100644 --- a/modules/audio_processing/audio_processing_unittest.cc +++ b/modules/audio_processing/audio_processing_unittest.cc @@ -2160,36 +2160,24 @@ std::string ProduceDebugText(int render_input_sample_rate_hz, size_t capture_output_num_channels) { rtc::StringBuilder ss; ss << "Sample rates:" - "\n" - " Render input: " + "\n Render input: " << render_input_sample_rate_hz << " Hz" - "\n" - " Render output: " + "\n Render output: " << render_output_sample_rate_hz << " Hz" - "\n" - " Capture input: " + "\n Capture input: " << capture_input_sample_rate_hz << " Hz" - "\n" - " Capture output: " + "\n Capture output: " << capture_output_sample_rate_hz << " Hz" - "\n" - "Number of channels:" - "\n" - " Render input: " + "\nNumber of channels:" + "\n Render input: " << render_input_num_channels - << "\n" - " Render output: " - << render_output_num_channels - << "\n" - " Capture input: " - << capture_input_num_channels - << "\n" - " Capture output: " - << capture_output_num_channels; + << "\n Render output: " << render_output_num_channels + << "\n Capture input: " << capture_input_num_channels + << "\n Capture output: " << capture_output_num_channels; return ss.Release(); }