node-liquibase is outputting the DB connection details in the console. How to stop it?

Viewed 22
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.

0 Answers
Related