We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b254ee commit d8ae723Copy full SHA for d8ae723
1 file changed
Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp
@@ -2859,7 +2859,7 @@ void SQLiteIDBBackingStore::incrementalVacuumIfNeeded()
2859
if (totalSize <= 10 * freeSpaceSize) {
2860
int result = m_sqliteDB->runIncrementalVacuumCommand();
2861
if (result != SQLITE_DONE)
2862
- LOG_ERROR("Failed to perform incremental vacuum on database for path '%s'", m_sqliteDB->utf8().data());
+ LOG_ERROR("Failed to perform incremental vacuum on database for path '%s'", fullDatabasePath().utf8().data());
2863
}
2864
2865
0 commit comments