We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 443921a commit 60dba38Copy full SHA for 60dba38
packages/db/index.ts
@@ -10,23 +10,6 @@ if (!connectionString) {
10
throw new Error('Missing DATABASE_URL environment variable')
11
}
12
13
-console.log(
14
- '[DB Pool Init]',
15
- JSON.stringify({
16
- timestamp: new Date().toISOString(),
17
- nodeEnv: process.env.NODE_ENV,
18
- action: 'CREATING_CONNECTION_POOL',
19
- poolConfig: {
20
- max: 30,
21
- idle_timeout: 20,
22
- connect_timeout: 30,
23
- prepare: false,
24
- },
25
- pid: process.pid,
26
- isProduction: process.env.NODE_ENV === 'production',
27
- })
28
-)
29
-
30
const postgresClient = postgres(connectionString, {
31
prepare: false,
32
idle_timeout: 20,
0 commit comments