Change log levels of some log statements

This commit is contained in:
Glavin Wiechert 2017-06-04 16:04:06 -03:00
parent 84361e4011
commit 788cc724dd
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ module.exports = class Executable
@version = version
)
.then((version) =>
@verbose("#{@cmd} version: #{version}")
@info("#{@cmd} version: #{version}")
version
)
.catch((error) =>
@ -105,7 +105,7 @@ module.exports = class Executable
runVersion: () ->
@run(@versionArgs, @versionRunOptions)
.then((version) =>
@verbose("Version: " + version)
@info("Version text: " + version)
version
)

View File

@ -278,7 +278,7 @@ module.exports = class Beautifiers extends EventEmitter
return Promise.all(allOptions)
.then((allOptions) =>
return new Promise((resolve, reject) =>
logger.info('beautify', text, allOptions, grammar, filePath, onSave, language)
logger.debug('beautify', text, allOptions, grammar, filePath, onSave, language)
logger.verbose(allOptions)
language ?= @getLanguage(grammar, filePath)