| 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;
|
| }
|
| }
|
|
|