refactor: do not print out config

This commit is contained in:
Mikhail Zolotukhin 2021-10-21 22:00:30 +03:00
parent bb48ebe643
commit 84223ce180
2 changed files with 1 additions and 2 deletions

View File

@ -253,6 +253,6 @@ export class ConfigImpl implements Config {
} }
public toString(): string { public toString(): string {
return "Config(" + JSON.stringify(this, undefined, 2) + ")"; return "Config(" + JSON.stringify(this, null, 2) + ")";
} }
} }

View File

@ -164,7 +164,6 @@ export class ControllerImpl implements Controller {
*/ */
public start(): void { public start(): void {
this.log.log("Let's get down to bismuth!"); this.log.log("Let's get down to bismuth!");
this.log.log(`Config: ${this.config}`);
this.driver.bindEvents(); this.driver.bindEvents();
this.bindShortcuts(); this.bindShortcuts();