From 88e24703fff22705e09fa8f4283845b4b03d7c08 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 21 Jul 2022 19:59:56 -0500 Subject: [PATCH] Scope log --- src/matrix/storage/idb/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/storage/idb/utils.ts b/src/matrix/storage/idb/utils.ts index b685f365..948bdfaf 100644 --- a/src/matrix/storage/idb/utils.ts +++ b/src/matrix/storage/idb/utils.ts @@ -80,7 +80,7 @@ export function openDatabase(name: string, createObjectStore: CreateObjectStore, try { await createObjectStore(db, txn, oldVersion, version); } catch (err) { - console.error(`Failed to createObjectStore in database=${name}`, err); + console.error(`openDatabase: Failed to createObjectStore in database=${name}`, err); // try aborting on error, if that hasn't been done already try { txn.abort();