Skip to content

Commit

Permalink
fix(config): Call debug log methods after setting the loglevel based …
Browse files Browse the repository at this point in the history
…upon config/cli-options.
  • Loading branch information
Jake Champion committed Nov 22, 2017
1 parent e79463b commit a340dae
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/config.js
Expand Up @@ -357,7 +357,6 @@ var CONFIG_SYNTAX_HELP = ' module.exports = function(config) {\n' +
var parseConfig = function (configFilePath, cliOptions) {
var configModule
if (configFilePath) {
log.debug('Loading config %s', configFilePath)

try {
configModule = require(configFilePath)
Expand Down Expand Up @@ -389,7 +388,6 @@ var parseConfig = function (configFilePath, cliOptions) {
return process.exit(1)
}
} else {
log.debug('No config file specified.')
// if no config file path is passed, we define a dummy config module.
configModule = function () {}
}
Expand Down Expand Up @@ -433,6 +431,12 @@ var parseConfig = function (configFilePath, cliOptions) {
// configure the logger as soon as we can
logger.setup(config.logLevel, config.colors, config.loggers)

if (configFilePath) {
log.debug('Loading config %s', configFilePath)
} else {
log.debug('No config file specified.')
}

return normalizeConfig(config, configFilePath)
}

Expand Down

0 comments on commit a340dae

Please sign in to comment.