From fd920a709b2206ef9cc83c1fff94fbe85b68efab Mon Sep 17 00:00:00 2001 From: Singhankit001 Date: Tue, 31 Mar 2026 00:03:23 +0530 Subject: [PATCH] fix: use console.error for caught exceptions in db.js --- src/data/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/db.js b/src/data/db.js index be65138b9..8ef19ec86 100644 --- a/src/data/db.js +++ b/src/data/db.js @@ -22,5 +22,5 @@ db.version(67) }); db.on("populate", (transaction) => { - transaction.templates.bulkAdd(templateSeeds).catch((e) => console.log(e)); + transaction.templates.bulkAdd(templateSeeds).catch((e) => console.error(e)); });