| Index: Source/WebCore/Modules/webdatabase/DatabaseThread.cpp
|
| diff --git a/Source/WebCore/Modules/webdatabase/DatabaseThread.cpp b/Source/WebCore/Modules/webdatabase/DatabaseThread.cpp
|
| index e944d894d762f17818a12e31705fac7e52e22e1d..3f9628ec93b42226ec213dfcc8fd77e18a37195f 100644
|
| --- a/Source/WebCore/Modules/webdatabase/DatabaseThread.cpp
|
| +++ b/Source/WebCore/Modules/webdatabase/DatabaseThread.cpp
|
| @@ -77,7 +77,7 @@ bool DatabaseThread::start()
|
| void DatabaseThread::requestTermination(DatabaseTaskSynchronizer *cleanupSync)
|
| {
|
| m_cleanupSync = cleanupSync;
|
| - LOG(StorageAPI, "DatabaseThread %p was asked to terminate\n", this);
|
| + LOG_INFO(StorageAPI, "DatabaseThread %p was asked to terminate\n", this);
|
| m_queue.kill();
|
| }
|
|
|
| @@ -104,7 +104,7 @@ void DatabaseThread::databaseThread()
|
| {
|
| // Wait for DatabaseThread::start() to complete.
|
| MutexLocker lock(m_threadCreationMutex);
|
| - LOG(StorageAPI, "Started DatabaseThread %p", this);
|
| + LOG_INFO(StorageAPI, "Started DatabaseThread %p", this);
|
| }
|
|
|
| AutodrainedPool pool;
|
| @@ -116,7 +116,7 @@ void DatabaseThread::databaseThread()
|
| // Clean up the list of all pending transactions on this database thread
|
| m_transactionCoordinator->shutdown();
|
|
|
| - LOG(StorageAPI, "About to detach thread %i and clear the ref to DatabaseThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
|
| + LOG_INFO(StorageAPI, "About to detach thread %i and clear the ref to DatabaseThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
|
|
|
| // Close the databases that we ran transactions on. This ensures that if any transactions are still open, they are rolled back and we don't leave the database in an
|
| // inconsistent or locked state.
|
|
|