Add ToString method to AggregatedStats and log stats at the end of a call.
BUG=webrtc:5283 Review-Url: https://codereview.webrtc.org/2494423002 Cr-Commit-Position: refs/heads/master@{#15088}
This commit is contained in:
@ -77,6 +77,8 @@ void ReceiveStatisticsProxy::UpdateHistograms() {
|
||||
if (freq_offset_stats.num_samples > 0) {
|
||||
RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.RtpToNtpFreqOffsetInKhz",
|
||||
freq_offset_stats.average);
|
||||
LOG(LS_INFO) << "WebRTC.Video.RtpToNtpFreqOffsetInKhz, "
|
||||
<< freq_offset_stats.ToString();
|
||||
}
|
||||
|
||||
int qp = qp_counters_.vp8.Avg(kMinRequiredSamples);
|
||||
|
||||
Reference in New Issue
Block a user