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

Unified Diff: media/base/bit_reader.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: media/base/bit_reader.cc
diff --git a/media/base/bit_reader.cc b/media/base/bit_reader.cc
index ea74350390a5e0c11622d40661ced828907f739a..e4d83af74107a09a2f745bd363ff1615af6fcd36 100644
--- a/media/base/bit_reader.cc
+++ b/media/base/bit_reader.cc
@@ -19,7 +19,7 @@ BitReader::~BitReader() {}
bool BitReader::SkipBits(int num_bits) {
DCHECK_GE(num_bits, 0);
- DLOG_IF(INFO, num_bits > 100)
+ DVLOG_IF(0, num_bits > 100)
<< "BitReader::SkipBits inefficient for large skips";
// Skip any bits in the current byte waiting to be processed, then

Powered by Google App Engine
This is Rietveld 408576698