remove leftover logging

This commit is contained in:
Bruno Windels 2021-09-30 08:40:49 +02:00
parent 3556878a1e
commit ccda93cc82

View file

@ -257,7 +257,6 @@ async function clearAllStores(db: IDBDatabase, txn: IDBTransaction) {
case "session": {
await iterateCursor(store.openCursor(), (value, key, cursor) => {
if (!(key as string).startsWith(SESSION_E2EE_KEY_PREFIX)) {
console.log("deleting", key);
cursor.delete();
}
return NOT_DONE;