From 84223ce1801f114fb248661d144a75312ac0b08b Mon Sep 17 00:00:00 2001 From: Mikhail Zolotukhin Date: Thu, 21 Oct 2021 22:00:30 +0300 Subject: [PATCH] refactor: do not print out config --- src/config.ts | 2 +- src/controller/index.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index 4f03f666..fe01392d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -253,6 +253,6 @@ export class ConfigImpl implements Config { } public toString(): string { - return "Config(" + JSON.stringify(this, undefined, 2) + ")"; + return "Config(" + JSON.stringify(this, null, 2) + ")"; } } diff --git a/src/controller/index.ts b/src/controller/index.ts index be474630..7a1e04d5 100644 --- a/src/controller/index.ts +++ b/src/controller/index.ts @@ -164,7 +164,6 @@ export class ControllerImpl implements Controller { */ public start(): void { this.log.log("Let's get down to bismuth!"); - this.log.log(`Config: ${this.config}`); this.driver.bindEvents(); this.bindShortcuts();