mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:43:09 +02:00
Include worker information for each logs
This commit is contained in:
parent
9beab05a30
commit
0bd0fb9fbf
1 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
import * as cluster from 'cluster';
|
||||||
import chalk from 'chalk';
|
import chalk from 'chalk';
|
||||||
import * as dateformat from 'dateformat';
|
import * as dateformat from 'dateformat';
|
||||||
|
|
||||||
|
@ -23,7 +24,8 @@ export default class Logger {
|
||||||
this.parentLogger.log(level, `[${domain}]\t${message}`, important);
|
this.parentLogger.log(level, `[${domain}]\t${message}`, important);
|
||||||
} else {
|
} else {
|
||||||
const time = dateformat(new Date(), 'HH:MM:ss');
|
const time = dateformat(new Date(), 'HH:MM:ss');
|
||||||
const log = `${chalk.gray(time)} ${level} [${domain}]\t${message}`;
|
const process = cluster.isMaster ? '*' : cluster.worker.id;
|
||||||
|
const log = `${chalk.gray(time)} ${level} ${process}\t[${domain}]\t${message}`;
|
||||||
console.log(important ? chalk.bold(log) : log);
|
console.log(important ? chalk.bold(log) : log);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue