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

Unified Diff: Source/WTF/wtf/RefCountedLeakCounter.cpp

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 years, 8 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
« no previous file with comments | « Source/WTF/wtf/Assertions.h ('k') | Source/WebCore/Modules/indexeddb/IDBTracing.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WTF/wtf/RefCountedLeakCounter.cpp
diff --git a/Source/WTF/wtf/RefCountedLeakCounter.cpp b/Source/WTF/wtf/RefCountedLeakCounter.cpp
index 4a045282489fe95a17e23919773d37cb24410be5..bcb13ed6da7dc8252f311206890d4998aad3e261 100644
--- a/Source/WTF/wtf/RefCountedLeakCounter.cpp
+++ b/Source/WTF/wtf/RefCountedLeakCounter.cpp
@@ -68,10 +68,10 @@ RefCountedLeakCounter::~RefCountedLeakCounter()
static bool loggedSuppressionReason;
if (m_count) {
if (!leakMessageSuppressionReasons || leakMessageSuppressionReasons->isEmpty())
- LOG(RefCountedLeaks, "LEAK: %u %s", m_count, m_description);
+ LOG_INFO(RefCountedLeaks, "LEAK: %u %s", m_count, m_description);
else if (!loggedSuppressionReason) {
// This logs only one reason. Later we could change it so we log all the reasons.
- LOG(RefCountedLeaks, "No leak checking done: %s", leakMessageSuppressionReasons->begin()->key);
+ LOG_INFO(RefCountedLeaks, "No leak checking done: %s", leakMessageSuppressionReasons->begin()->key);
loggedSuppressionReason = true;
}
}
« no previous file with comments | « Source/WTF/wtf/Assertions.h ('k') | Source/WebCore/Modules/indexeddb/IDBTracing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698