Skip to content

Commit 2ba1da1

Browse files
committed
fix: don't log db
1 parent 35c7d6b commit 2ba1da1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/db/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ function getClient() {
5050

5151
process.env.DATABASE_URL = connectionString;
5252

53-
logger.info('connecting to database', { url: connectionString });
53+
logger.info('connecting to database');
54+
logger.debug('connecting to database', { url: connectionString });
5455

5556
const adapter = new PrismaPg({ connectionString });
5657
const client = new PrismaClient({

0 commit comments

Comments
 (0)