From 416a71b52860323deda60f0eea9d1e31eb41131c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=8D=E3=82=80=E3=81=AD=E3=81=93?= Date: Tue, 18 Jun 2024 11:28:02 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=BF=E3=82=B0=E3=81=AE=E8=A1=A8=E7=A4=BA?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/logger.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/logger.ts b/src/logger.ts index 71bccc7..c89de3e 100644 --- a/src/logger.ts +++ b/src/logger.ts @@ -27,19 +27,19 @@ class Logger { } info = (message: string) => { - console.log(chalk.blue('[INFO ]') + ' ' + this.tagString() + ':\t' + message); + console.log(chalk.blue('[ INFO ]') + ' ' + this.tagString() + ':\t' + message); } warn = (message: string) => { - console.log(chalk.yellow('[WARN ]') + ' ' + this.tagString() + ':\t' + message); + console.log(chalk.yellow('[ WARN ]') + ' ' + this.tagString() + ':\t' + message); } error = (message: string) => { - console.log(chalk.red('[ERROR]') + ' ' + this.tagString() + ':\t' + message); + console.log(chalk.red('[ERROR ]') + ' ' + this.tagString() + ':\t' + message); } debug = (message: string) => { - console.log(chalk.gray('[DEBUG]' + ' ' + this.tagString() + ':\t' + message)); + console.log(chalk.gray('[DEBUG ]' + ' ' + this.tagString() + ':\t' + message)); } success = (message: string) => {