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

Unified Diff: third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp

Issue 2905023002: Remove WTFLogAlways() usages from platform/graphics/ (Closed)
Patch Set: Replace LOG with DLOG Created 3 years, 5 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: third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp b/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
index 818fda7b58e90f99347d670065237ecdc9c324f0..516d11a94f1a59cdaab4a88da752b5295d5d8636 100644
--- a/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
+++ b/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp
@@ -918,7 +918,7 @@ String RecordAsDebugString(const PaintRecord* record, const SkRect& bounds) {
}
void ShowPaintRecord(const PaintRecord* record, const SkRect& bounds) {
- WTFLogAlways("%s\n", RecordAsDebugString(record, bounds).Utf8().data());
+ DLOG(INFO) << "\n" << RecordAsDebugString(record, bounds).Utf8().data();
Stephen Chennney 2017/08/02 13:23:45 The newline is not required at all. DLOG inserts i
}
#endif

Powered by Google App Engine
This is Rietveld 408576698