From 6ff9ded4142323864fb5e851f0e12f527b5933ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Tue, 9 Sep 2025 12:43:51 +0100 Subject: [PATCH] chore: don't expose token in log --- src/lib/db/aws-iam.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/db/aws-iam.ts b/src/lib/db/aws-iam.ts index 143c4d8ac0..6cdfa25c9c 100644 --- a/src/lib/db/aws-iam.ts +++ b/src/lib/db/aws-iam.ts @@ -19,7 +19,7 @@ export const getDBPasswordResolver = (db: IDBOption): PasswordResolver => { return async () => { console.log('[AWS RDS SIGNER] Getting token...'); const token = await signer.getAuthToken(); - console.log(`[AWS RDS SIGNER] Got token: ${token}`); + console.log(`[AWS RDS SIGNER] Got token!`); return token; }; }