mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
parent
d19b15b83d
commit
f6d9fb620b
1 changed files with 6 additions and 5 deletions
|
@ -43,13 +43,10 @@ async function parseConfigs(env, argv) {
|
|||
const cliConfig = await resolveConfigPresets(cliParser.getConfig(argv));
|
||||
const envConfig = await resolveConfigPresets(envParser.getConfig(env));
|
||||
|
||||
logger.debug({ config: fileConfig }, 'File config');
|
||||
logger.debug({ config: cliConfig }, 'CLI config');
|
||||
logger.debug({ config: envConfig }, 'Env config');
|
||||
|
||||
let config = mergeChildConfig(fileConfig, envConfig);
|
||||
config = mergeChildConfig(config, cliConfig);
|
||||
logger.debug({ config }, 'Combined config');
|
||||
|
||||
const combinedConfig = config;
|
||||
|
||||
config = mergeChildConfig(defaultConfig, config);
|
||||
|
||||
|
@ -78,6 +75,10 @@ async function parseConfigs(env, argv) {
|
|||
}
|
||||
|
||||
logger.trace({ config: defaultConfig }, 'Default config');
|
||||
logger.debug({ config: fileConfig }, 'File config');
|
||||
logger.debug({ config: cliConfig }, 'CLI config');
|
||||
logger.debug({ config: envConfig }, 'Env config');
|
||||
logger.debug({ config: combinedConfig }, 'Combined config');
|
||||
|
||||
// Get global config
|
||||
logger.trace({ config }, 'Full config');
|
||||
|
|
Loading…
Reference in a new issue