fix(logs): INFO --print-config (#11299)

This commit is contained in:
bprachi29 2021-08-23 19:57:11 +05:30 committed by GitHub
parent 47d78894ff
commit 2f826677d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ export async function initRepo(
config = await detectVulnerabilityAlerts(config);
// istanbul ignore if
if (config.printConfig) {
logger.debug({ config }, 'Full resolved config including presets');
logger.info({ config }, 'Full resolved config including presets');
}
return config;
}