Change log levels of some log statements
This commit is contained in:
parent
84361e4011
commit
788cc724dd
|
@ -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
|
||||
)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue