Remove verbose settings
This commit is contained in:
parent
b1060f859f
commit
b7c26d507a
|
|
@ -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 },
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue