| Index: content/browser/renderer_host/media/video_capture_oracle.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_oracle.cc b/content/browser/renderer_host/media/video_capture_oracle.cc
|
| index c05ac0f8a378936ce592ee3efb3f4f5034a8b5ac..fb41ec2fe4eb56d43ba258e3b414aa79fb467d3b 100644
|
| --- a/content/browser/renderer_host/media/video_capture_oracle.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_oracle.cc
|
| @@ -130,11 +130,11 @@ void SmoothEventSampler::RecordSample() {
|
| }
|
| bool is_paused = overdue_sample_count_ == redundant_capture_goal_;
|
|
|
| - LOG_IF(INFO, !was_paused && is_paused)
|
| - << "Tab content unchanged for " << redundant_capture_goal_
|
| - << " frames; capture will halt until content changes.";
|
| - LOG_IF(INFO, was_paused && !is_paused)
|
| - << "Content changed; capture will resume.";
|
| + VLOG_IF(0, !was_paused && is_paused)
|
| + << "Tab content unchanged for " << redundant_capture_goal_
|
| + << " frames; capture will halt until content changes.";
|
| + VLOG_IF(0, was_paused && !is_paused)
|
| + << "Content changed; capture will resume.";
|
| }
|
|
|
| bool SmoothEventSampler::IsOverdueForSamplingAt(base::Time event_time) const {
|
|
|