This commit is contained in:
syuilo 2019-02-03 20:23:53 +09:00
parent 4a23ebe534
commit edd1baa9f4
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -33,7 +33,7 @@ export default class Logger {
} }
public error(message: string | Error, important = false): void { // 実行を継続できない状況で使う public error(message: string | Error, important = false): void { // 実行を継続できない状況で使う
this.log(chalk.red('ERR '), chalk.red(message.toString()), important); this.log(important ? chalk.bgRed.white('ERR ') : chalk.red('ERR '), chalk.red(message.toString()), important);
} }
public warn(message: string, important = false): void { // 実行を継続できるが改善すべき状況で使う public warn(message: string, important = false): void { // 実行を継続できるが改善すべき状況で使う
@ -41,7 +41,7 @@ export default class Logger {
} }
public succ(message: string, important = false): void { // 何かに成功した状況で使う public succ(message: string, important = false): void { // 何かに成功した状況で使う
this.log(chalk.green('DONE'), chalk.green(message), important); this.log(important ? chalk.bgGreen.white('DONE') : chalk.green('DONE'), chalk.green(message), important);
} }
public info(message: string, important = false): void { // それ以外 public info(message: string, important = false): void { // それ以外