From 75dba413b816b56ec4f139981f8c79773f19fd48 Mon Sep 17 00:00:00 2001 From: Aster Fialla Date: Sun, 15 Feb 2026 16:21:00 -0500 Subject: [PATCH] turned off logging for sequelize since i don't gotta see all that --- src/db.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/db.js b/src/db.js index 870cf35..07a2a28 100644 --- a/src/db.js +++ b/src/db.js @@ -11,6 +11,7 @@ const database = {}; const sequelize = new Sequelize('postgres', 'postgres', password, { host: 'localhost', + logging: false, dialect: 'postgres' });