Remove console.log from testing

This commit is contained in:
Skylar Ittner 2026-01-23 21:47:03 -07:00 committed by GitHub
parent 61d4afc22c
commit b34e4b5d83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -356,7 +356,6 @@ class SQLiteBackup {
await db.backup(backupPath);
return;
case "sqlite3":
console.info("Using node-sqlite3");
await this._backupUsingSQLite3Package(dbDriver.driver, this.databasePath, backupPath);
return;
}