egirlskey/src/misc/logger.ts
2019-02-03 01:20:21 +09:00

39 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import chalk from 'chalk';
import * as dateformat from 'dateformat';
export default class Logger {
private domain: string;
private parentLogger: Logger;
constructor(domain: string, parentLogger?: Logger) {
this.domain = domain;
this.parentLogger = parentLogger;
}
public log(level: string, message: string, important = false): void {
if (this.parentLogger) {
this.parentLogger.log(level, `[${this.domain}]\t${message}`, important);
} else {
const time = dateformat(new Date(), 'HH:MM:ss');
const log = `${chalk.gray(time)} ${level} [${this.domain}]\t${message}`;
console.log(important ? chalk.bold(log) : log);
}
}
public error(message: string | Error): void { // 実行を継続できない状況で使う
this.log(chalk.red.bold('ERROR'), chalk.red.bold(message.toString()));
}
public warn(message: string): void { // 実行を継続できるが改善すべき状況で使う
this.log(chalk.yellow.bold('WARN'), chalk.yellow.bold(message));
}
public succ(message: string, important = false): void { // 何かに成功した状況で使う
this.log(chalk.blue.green('DONE'), chalk.green.bold(message), important);
}
public info(message: string): void { // それ以外
this.log(chalk.blue.bold('INFO'), message);
}
}