From ec97d0a3b646d8d6c6004c861082215540c7aa56 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Wed, 1 Nov 2023 23:46:46 -0600 Subject: [PATCH] feat: inform host that DB has not been set --- backend/app.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app.ts b/backend/app.ts index ddd2e06..df3a730 100644 --- a/backend/app.ts +++ b/backend/app.ts @@ -131,6 +131,7 @@ async function main() { } } catch (err) { throw new Error(`Failed to configure SQL`); } } else { // default to json database + log.debug('DB not set! Defaulting to JSON'); await DBManager.use(new JSONDatabase()); }