1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

chore: drop db-pool log

This commit is contained in:
Nuno Góis 2025-09-09 12:57:46 +01:00
parent 6ff9ded414
commit 080c49c2bf
No known key found for this signature in database
GPG Key ID: 71ECC689F1091765

View File

@ -9,13 +9,6 @@ export function createDb({
getLogger,
}: Pick<IUnleashConfig, 'db' | 'getLogger'>): Knex {
const logger = getLogger('db-pool.js');
if (db.awsIamAuth) {
logger.info(
`createDb: iam=${Boolean(db.awsIamAuth)} host=${db.host} port=${db.port} db=${db.database} user=${db.user} ssl=${Boolean(db.ssl)}`,
);
}
return knex({
client: 'pg',
version: db.version,