const myConfig = {
...POSTGRESQL_DEFAULT_CONFIG,
changeLogFile: './changelog.xml',
url: `jdbc:postgresql://${AppConfigs.Database.host}:${parseInt(AppConfigs.Database.port, 10)}/${AppConfigs.Database.databaseName}`,
username: AppConfigs.Database.user,
password: AppConfigs.Database.password,
};
The above code outputs the info in console with actual values replaced from the secret. How can I stop this? Any help greatly appreciated.