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

chore: don't expose token in log

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

View File

@ -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;
};
}