refactor(@embark/cmd_controller): remove logger call in initConfig

This commit is contained in:
Michael Bradley, Jr 2019-11-19 13:56:25 -06:00
parent 41e351b961
commit b28054530d
1 changed files with 0 additions and 2 deletions

View File

@ -27,8 +27,6 @@ class EmbarkController {
initConfig(env, options) {
this.events = new Events();
this.logger = new Logger({ logLevel: Logger.logLevels.debug, events: this.events, context: this.context });
this.logger.info('foo');
this.config = new Config({ env: env, logger: this.logger, events: this.events, context: this.context, version: this.version });
this.config.loadConfigFiles(options);
this.plugins = this.config.plugins;