Chromium Code Reviews| 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 |