diff options
Diffstat (limited to 'src/utils/logger.ts')
| -rw-r--r-- | src/utils/logger.ts | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/utils/logger.ts b/src/utils/logger.ts deleted file mode 100644 index fae1042c39..0000000000 --- a/src/utils/logger.ts +++ /dev/null @@ -1,53 +0,0 @@ -import chalk, { Chalk } from 'chalk'; - -export type LogLevel = 'Error' | 'Warn' | 'Info'; - -function toLevelColor(level: LogLevel): Chalk { - switch (level) { - case 'Error': return chalk.red; - case 'Warn': return chalk.yellow; - case 'Info': return chalk.blue; - } -} - -export default class Logger { - private domain: string; - - constructor(domain: string) { - this.domain = domain; - } - - public static log(level: LogLevel, message: string): void { - const color = toLevelColor(level); - const time = (new Date()).toLocaleTimeString('ja-JP'); - console.log(`[${time} ${color.bold(level.toUpperCase())}]: ${message}`); - } - - public static error(message: string): void { - Logger.log('Error', message); - } - - public static warn(message: string): void { - Logger.log('Warn', message); - } - - public static info(message: string): void { - Logger.log('Info', message); - } - - public log(level: LogLevel, message: string): void { - Logger.log(level, `[${this.domain}] ${message}`); - } - - public error(message: string): void { - this.log('Error', message); - } - - public warn(message: string): void { - this.log('Warn', message); - } - - public info(message: string): void { - this.log('Info', message); - } -} |