remove debug info

This commit is contained in:
adueck 2022-09-22 19:08:45 +04:00
parent 2511b717a3
commit 28373e712b
1 changed files with 0 additions and 3 deletions

View File

@ -73,9 +73,6 @@ function initializeLocalDb(type: LocalDbType, refresh: () => void, user: AT.Ling
? user.wordlistDbName
: "";
const password = "couchDbPassword" in user ? user.couchDbPassword : "";
console.log("initializing db", type);
console.log("using pwd", password);
console.log({ user });
const db = dbs[type];
// only initialize the db if it doesn't exist or if it has a different name
if ((!db) || (db.db?.name !== name)) {