| Index: Source/WebCore/fileapi/FileThread.cpp
|
| diff --git a/Source/WebCore/fileapi/FileThread.cpp b/Source/WebCore/fileapi/FileThread.cpp
|
| index 18e6679b57d3560f786ccc70cca32ac07ce57744..a27c0cb5d680f462ef420059c6f771c011b75438 100644
|
| --- a/Source/WebCore/fileapi/FileThread.cpp
|
| +++ b/Source/WebCore/fileapi/FileThread.cpp
|
| @@ -95,7 +95,7 @@ void FileThread::runLoop()
|
| // Wait for FileThread::start() to complete to have m_threadID
|
| // established before starting the main loop.
|
| MutexLocker lock(m_threadCreationMutex);
|
| - LOG(FileAPI, "Started FileThread %p", this);
|
| + LOG_INFO(FileAPI, "Started FileThread %p", this);
|
| }
|
|
|
| AutodrainedPool pool;
|
| @@ -104,7 +104,7 @@ void FileThread::runLoop()
|
| pool.cycle();
|
| }
|
|
|
| - LOG(FileAPI, "About to detach thread %i and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
|
| + LOG_INFO(FileAPI, "About to detach thread %i and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
|
|
|
| detachThread(m_threadID);
|
|
|
|
|