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..82711719f7b9ee90bc2af0008a86017b18fb09b2 100644 |
| --- a/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp |
| +++ b/third_party/WebKit/Source/platform/graphics/LoggingCanvas.cpp |
| @@ -918,7 +918,8 @@ String RecordAsDebugString(const PaintRecord* record, const SkRect& bounds) { |
| } |
| void ShowPaintRecord(const PaintRecord* record, const SkRect& bounds) { |
| - WTFLogAlways("%s\n", RecordAsDebugString(record, bounds).Utf8().data()); |
| + LOG(INFO) << "\n" |
|
tkent
2017/06/14 23:27:11
Use DLOG(). LOG() usage should be avoided.
|
| + << RecordAsDebugString(record, bounds).Utf8().data() << "\n"; |
|
tkent
2017/06/14 23:27:11
The trailing \n is unnecessary.
|
| } |
| #endif |