Fix logger

This commit is contained in:
syuilo 2019-02-03 01:07:14 +09:00
parent 122ef23e0f
commit a91f95451a
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -44,7 +44,7 @@ export default class Logger {
} }
public succ(message: string): void { // 何かに成功した状況で使う public succ(message: string): void { // 何かに成功した状況で使う
this.log(chalk.blue.bold('INFO'), chalk.green.bold(message)); this.log(chalk.blue.green('DONE'), chalk.green.bold(message));
} }
public info(message: string): void { // それ以外 public info(message: string): void { // それ以外