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

Unified Diff: Source/WebCore/Modules/webdatabase/DatabaseThread.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
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.
« no previous file with comments | « Source/WebCore/Modules/webdatabase/DatabaseTask.cpp ('k') | Source/WebCore/Modules/webdatabase/DatabaseTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698