| Index: third_party/WebKit/Source/wtf/RefCountedLeakCounter.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/RefCountedLeakCounter.cpp b/third_party/WebKit/Source/wtf/RefCountedLeakCounter.cpp
|
| index 96a9fb37ffe89bdc0bb59e621acc16d67a587fe1..8f9eee45e393d1962cbacc164185a1ce3cd5e693 100644
|
| --- a/third_party/WebKit/Source/wtf/RefCountedLeakCounter.cpp
|
| +++ b/third_party/WebKit/Source/wtf/RefCountedLeakCounter.cpp
|
| @@ -37,9 +37,6 @@ void RefCountedLeakCounter::decrement() { }
|
|
|
| #else
|
|
|
| -#define LOG_CHANNEL_PREFIX Log
|
| -static WTFLogChannel LogRefCountedLeaks = { WTFLogChannelOn };
|
| -
|
| RefCountedLeakCounter::RefCountedLeakCounter(const char* description)
|
| : m_description(description)
|
| {
|
| @@ -50,7 +47,7 @@ RefCountedLeakCounter::~RefCountedLeakCounter()
|
| if (!m_count)
|
| return;
|
|
|
| - WTF_LOG(RefCountedLeaks, "LEAK: %u %s", m_count, m_description);
|
| + VLOG(0) << "LEAK: " << m_count << " " << m_description;
|
| }
|
|
|
| void RefCountedLeakCounter::increment()
|
|
|