From 28373e712bf0f2a676ff6cd5ed5f7701e91955d2 Mon Sep 17 00:00:00 2001 From: adueck Date: Thu, 22 Sep 2022 19:08:45 +0400 Subject: [PATCH] remove debug info --- website/src/lib/pouch-dbs.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/website/src/lib/pouch-dbs.ts b/website/src/lib/pouch-dbs.ts index be7eb6c..26cc17e 100644 --- a/website/src/lib/pouch-dbs.ts +++ b/website/src/lib/pouch-dbs.ts @@ -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)) {