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