2018-07-14 06:58:21 -05:00
|
|
|
|
import chalk from 'chalk';
|
|
|
|
|
import * as dateformat from 'dateformat';
|
2016-12-29 02:36:03 -06:00
|
|
|
|
|
2016-12-29 08:09:21 -06:00
|
|
|
|
export default class Logger {
|
2017-05-24 06:50:17 -05:00
|
|
|
|
private domain: string;
|
2016-12-29 08:09:21 -06:00
|
|
|
|
|
2017-05-24 06:50:17 -05:00
|
|
|
|
constructor(domain: string) {
|
|
|
|
|
this.domain = domain;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 06:58:21 -05:00
|
|
|
|
public static log(level: string, message: string): void {
|
|
|
|
|
const time = dateformat(new Date(), 'HH:MM:ss');
|
|
|
|
|
console.log(`[${time} ${level}] ${message}`);
|
2016-12-29 05:03:34 -06:00
|
|
|
|
}
|
2016-12-29 08:09:21 -06:00
|
|
|
|
|
2017-05-24 06:50:17 -05:00
|
|
|
|
public static error(message: string): void {
|
2018-07-14 06:58:21 -05:00
|
|
|
|
(new Logger('')).error(message);
|
2016-12-29 08:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-24 06:50:17 -05:00
|
|
|
|
public static warn(message: string): void {
|
2018-07-14 06:58:21 -05:00
|
|
|
|
(new Logger('')).warn(message);
|
2016-12-29 08:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 06:58:21 -05:00
|
|
|
|
public static succ(message: string): void {
|
|
|
|
|
(new Logger('')).succ(message);
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 08:13:42 -05:00
|
|
|
|
public static info(message: string): void {
|
|
|
|
|
(new Logger('')).info(message);
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 06:58:21 -05:00
|
|
|
|
public log(level: string, message: string) {
|
|
|
|
|
const domain = this.domain.length > 0 ? `[${this.domain}] ` : '';
|
|
|
|
|
Logger.log(level, `${domain}${message}`);
|
2016-12-29 08:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 08:13:42 -05:00
|
|
|
|
public error(message: string): void { // 実行を継続できない状況で使う
|
2018-07-14 06:58:21 -05:00
|
|
|
|
this.log(chalk.red.bold('ERROR'), chalk.red.bold(message));
|
2016-12-29 08:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 08:13:42 -05:00
|
|
|
|
public warn(message: string): void { // 実行を継続できるが改善すべき状況で使う
|
2018-07-14 06:58:21 -05:00
|
|
|
|
this.log(chalk.yellow.bold('WARN'), chalk.yellow.bold(message));
|
2016-12-29 08:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 08:13:42 -05:00
|
|
|
|
public succ(message: string): void { // 何かに成功した状況で使う
|
|
|
|
|
this.log(chalk.blue.bold('INFO'), chalk.green.bold(message));
|
2018-07-14 06:58:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-14 08:13:42 -05:00
|
|
|
|
public info(message: string): void { // それ以外
|
|
|
|
|
this.log(chalk.blue.bold('INFO'), message);
|
2016-12-29 08:09:21 -06:00
|
|
|
|
}
|
2018-07-14 08:13:42 -05:00
|
|
|
|
|
2016-12-29 02:36:03 -06:00
|
|
|
|
}
|