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

Unified Diff: media/formats/mp4/box_reader.cc

Issue 1041353002: media-internals: Differentiate error, info, and debug log messages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt to fix android compile error Created 5 years, 9 months 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/formats/mp4/box_reader.cc
diff --git a/media/formats/mp4/box_reader.cc b/media/formats/mp4/box_reader.cc
index fd81d13751101796504534ccd9ddf048e4041e55..431773a0606b65e594b174669dff4687451c8fe1 100644
--- a/media/formats/mp4/box_reader.cc
+++ b/media/formats/mp4/box_reader.cc
@@ -160,8 +160,8 @@ bool BoxReader::IsValidTopLevelBox(const FourCC& type,
return true;
default:
// Hex is used to show nonprintable characters and aid in debugging
- MEDIA_LOG(log_cb) << "Unrecognized top-level box type "
- << FourCCToString(type);
+ MEDIA_LOG(log_cb, DEBUG) << "Unrecognized top-level box type "
+ << FourCCToString(type);
return false;
}
}

Powered by Google App Engine
This is Rietveld 408576698