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

Unified Diff: content/browser/renderer_host/media/video_capture_oracle.cc

Issue 83413006: Replace LOG(INFO) with VLOG(0), throughout *media* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
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 {

Powered by Google App Engine
This is Rietveld 408576698