We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75e854 commit 0e02585Copy full SHA for 0e02585
src/lib/db.ts
@@ -32,10 +32,10 @@ export const db = drizzle(client);
32
33
// ✅ Graceful Shutdown Handler
34
const shutdownHandler = async () => {
35
- console.log("🛑 Closing database connections...");
+ console.log("Closing database connections...");
36
try {
37
await client.end();
38
- console.log("✅ Database connections closed.");
+ console.log("Database connections closed.");
39
} catch (error) {
40
console.error("❌ Error closing database connections:", error);
41
}
0 commit comments