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) {
let db = Database(
pathToDB,
{ verbose: console.log, fileMustExist: false },
{ fileMustExist: false },
);
setupTable(db);
}
@ -50,7 +50,7 @@ export function connect() {
initDB();
return Database(
DB_PATH,
{ verbose: console.log, fileMustExist: true },
{ fileMustExist: true },
);
}