Skip to content

Commit 0e02585

Browse files
trying to fix code quality
1 parent b75e854 commit 0e02585

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/db.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ export const db = drizzle(client);
3232

3333
// ✅ Graceful Shutdown Handler
3434
const shutdownHandler = async () => {
35-
console.log("🛑 Closing database connections...");
35+
console.log("Closing database connections...");
3636
try {
3737
await client.end();
38-
console.log("Database connections closed.");
38+
console.log("Database connections closed.");
3939
} catch (error) {
4040
console.error("❌ Error closing database connections:", error);
4141
}

0 commit comments

Comments
 (0)