2019-02-03 04:51:24 +00:00
|
|
|
|
import * as cluster from 'cluster';
|
2018-07-14 11:58:21 +00:00
|
|
|
|
import chalk from 'chalk';
|
|
|
|
|
import * as dateformat from 'dateformat';
|
2019-02-03 11:10:20 +00:00
|
|
|
|
import { program } from '../argv';
|
2019-02-03 09:16:57 +00:00
|
|
|
|
|
2016-12-29 14:09:21 +00:00
|
|
|
|
export default class Logger {
|
2017-05-24 11:50:17 +00:00
|
|
|
|
private domain: string;
|
2019-02-02 16:39:42 +00:00
|
|
|
|
private color?: string;
|
2019-02-02 16:01:40 +00:00
|
|
|
|
private parentLogger: Logger;
|
2016-12-29 14:09:21 +00:00
|
|
|
|
|
2019-02-02 16:39:42 +00:00
|
|
|
|
constructor(domain: string, color?: string) {
|
2017-05-24 11:50:17 +00:00
|
|
|
|
this.domain = domain;
|
2019-02-02 16:39:42 +00:00
|
|
|
|
this.color = color;
|
2019-02-02 16:24:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-02 16:39:42 +00:00
|
|
|
|
public createSubLogger(domain: string, color?: string): Logger {
|
|
|
|
|
const logger = new Logger(domain, color);
|
2019-02-02 16:24:59 +00:00
|
|
|
|
logger.parentLogger = this;
|
|
|
|
|
return logger;
|
2017-05-24 11:50:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-04 02:51:23 +00:00
|
|
|
|
private log(level: string, message: string, important = false, subDomains: string[] = []): void {
|
2019-02-03 11:10:20 +00:00
|
|
|
|
if (program.quiet) return;
|
2019-02-02 16:39:42 +00:00
|
|
|
|
const domain = this.color ? chalk.keyword(this.color)(this.domain) : chalk.white(this.domain);
|
2019-02-03 12:42:52 +00:00
|
|
|
|
const domains = [domain].concat(subDomains);
|
2019-02-02 16:01:40 +00:00
|
|
|
|
if (this.parentLogger) {
|
2019-02-03 12:42:52 +00:00
|
|
|
|
this.parentLogger.log(level, message, important, domains);
|
2019-02-02 16:01:40 +00:00
|
|
|
|
} else {
|
|
|
|
|
const time = dateformat(new Date(), 'HH:MM:ss');
|
2019-02-03 04:51:24 +00:00
|
|
|
|
const process = cluster.isMaster ? '*' : cluster.worker.id;
|
2019-02-07 01:51:50 +00:00
|
|
|
|
let log = `${level} ${process}\t[${domains.join(' ')}]\t${message}`;
|
|
|
|
|
if (program.withLogTime) log = chalk.gray(time) + ' ' + log;
|
2019-02-02 16:20:21 +00:00
|
|
|
|
console.log(important ? chalk.bold(log) : log);
|
2019-02-02 16:01:40 +00:00
|
|
|
|
}
|
2016-12-29 11:03:34 +00:00
|
|
|
|
}
|
2016-12-29 14:09:21 +00:00
|
|
|
|
|
2019-02-03 09:16:57 +00:00
|
|
|
|
public error(message: string | Error, important = false): void { // 実行を継続できない状況で使う
|
2019-02-03 11:23:53 +00:00
|
|
|
|
this.log(important ? chalk.bgRed.white('ERR ') : chalk.red('ERR '), chalk.red(message.toString()), important);
|
2016-12-29 14:09:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-02 16:33:34 +00:00
|
|
|
|
public warn(message: string, important = false): void { // 実行を継続できるが改善すべき状況で使う
|
2019-02-03 07:45:13 +00:00
|
|
|
|
this.log(chalk.yellow('WARN'), chalk.yellow(message), important);
|
2016-12-29 14:09:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-02 16:20:21 +00:00
|
|
|
|
public succ(message: string, important = false): void { // 何かに成功した状況で使う
|
2019-02-03 11:23:53 +00:00
|
|
|
|
this.log(important ? chalk.bgGreen.white('DONE') : chalk.green('DONE'), chalk.green(message), important);
|
2018-07-14 11:58:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-06 04:52:32 +00:00
|
|
|
|
public debug(message: string, important = false): void { // デバッグ用に使う(開発者に必要だが利用者に不要な情報)
|
2019-02-04 03:14:07 +00:00
|
|
|
|
if (process.env.NODE_ENV != 'production' || program.verbose) {
|
2019-02-03 07:45:13 +00:00
|
|
|
|
this.log(chalk.gray('VERB'), chalk.gray(message), important);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-02-04 03:09:59 +00:00
|
|
|
|
|
|
|
|
|
public info(message: string, important = false): void { // それ以外
|
|
|
|
|
this.log(chalk.blue('INFO'), message, important);
|
|
|
|
|
}
|
2016-12-29 08:36:03 +00:00
|
|
|
|
}
|