| Index: Source/WebCore/Modules/webdatabase/SQLTransaction.cpp
|
| diff --git a/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp b/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp
|
| index b60e6b09e2499fc02a394bf14d26dbc206ea0281..8750d1d9c3f65afc8712fdbb26459d02cfc9861f 100644
|
| --- a/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp
|
| +++ b/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp
|
| @@ -119,7 +119,7 @@ SQLTransaction::StateFunction SQLTransaction::stateFunctionFor(SQLTransactionSta
|
| // modify is m_requestedState which is meant for this purpose.
|
| void SQLTransaction::requestTransitToState(SQLTransactionState nextState)
|
| {
|
| - LOG(StorageAPI, "Scheduling %s for transaction %p\n", nameForSQLTransactionState(nextState), this);
|
| + LOG_INFO(StorageAPI, "Scheduling %s for transaction %p\n", nameForSQLTransactionState(nextState), this);
|
| m_requestedState = nextState;
|
| m_database->scheduleTransactionCallback(this);
|
| }
|
| @@ -281,7 +281,7 @@ bool SQLTransaction::computeNextStateAndCleanupIfNeeded()
|
| || m_nextState == SQLTransactionState::DeliverQuotaIncreaseCallback
|
| || m_nextState == SQLTransactionState::DeliverSuccessCallback);
|
|
|
| - LOG(StorageAPI, "Callback %s\n", nameForSQLTransactionState(m_nextState));
|
| + LOG_INFO(StorageAPI, "Callback %s\n", nameForSQLTransactionState(m_nextState));
|
| return false;
|
| }
|
|
|
|
|