| Index: Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
|
| diff --git a/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp b/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
|
| index 878f8b71a86928c1d7f4cab676dbc998291ed9d7..31d00210b587011bd2d483c57a221b95aa4cf0db 100644
|
| --- a/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
|
| +++ b/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
|
| @@ -223,8 +223,8 @@ static void logOpenDatabaseError(ScriptExecutionContext* context, const String&
|
| {
|
| UNUSED_PARAM(context);
|
| UNUSED_PARAM(name);
|
| - LOG(StorageAPI, "Database %s for origin %s not allowed to be established", name.ascii().data(),
|
| - context->securityOrigin()->toString().ascii().data());
|
| + LOG_INFO(StorageAPI, "Database %s for origin %s not allowed to be established", name.ascii().data(),
|
| + context->securityOrigin()->toString().ascii().data());
|
| }
|
|
|
| PassRefPtr<DatabaseBackendBase> DatabaseManager::openDatabaseBackend(ScriptExecutionContext* context,
|
| @@ -309,7 +309,7 @@ PassRefPtr<Database> DatabaseManager::openDatabase(ScriptExecutionContext* conte
|
| InspectorInstrumentation::didOpenDatabase(context, database, context->securityOrigin()->host(), name, expectedVersion);
|
|
|
| if (backend->isNew() && creationCallback.get()) {
|
| - LOG(StorageAPI, "Scheduling DatabaseCreationCallbackTask for database %p\n", database.get());
|
| + LOG_INFO(StorageAPI, "Scheduling DatabaseCreationCallbackTask for database %p\n", database.get());
|
| database->m_scriptExecutionContext->postTask(DatabaseCreationCallbackTask::create(database, creationCallback));
|
| }
|
|
|
| @@ -334,7 +334,7 @@ PassRefPtr<DatabaseSync> DatabaseManager::openDatabaseSync(ScriptExecutionContex
|
| RefPtr<DatabaseSync> database = DatabaseSync::create(context, backend);
|
|
|
| if (backend->isNew() && creationCallback.get()) {
|
| - LOG(StorageAPI, "Invoking the creation callback for database %p\n", database.get());
|
| + LOG_INFO(StorageAPI, "Invoking the creation callback for database %p\n", database.get());
|
| creationCallback->handleEvent(database.get());
|
| }
|
|
|
|
|