Remove verbose settings

This commit is contained in:
TheThomaas 2024-12-24 17:36:49 +01:00
parent b1060f859f
commit b7c26d507a

View file

@ -25,7 +25,7 @@ function initDB() {
function createDB(pathToDB) { function createDB(pathToDB) {
let db = Database( let db = Database(
pathToDB, pathToDB,
{ verbose: console.log, fileMustExist: false }, { fileMustExist: false },
); );
setupTable(db); setupTable(db);
} }
@ -50,7 +50,7 @@ export function connect() {
initDB(); initDB();
return Database( return Database(
DB_PATH, DB_PATH,
{ verbose: console.log, fileMustExist: true }, { fileMustExist: true },
); );
} }