Compare commits
2 Commits
f80c950e71
...
6560923704
Author | SHA1 | Date | |
---|---|---|---|
6560923704 | |||
f4e9f2ac0f |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@navy.gif/logger",
|
||||
"version": "1.1.3",
|
||||
"version": "1.1.5",
|
||||
"description": "Logging thing",
|
||||
"main": "index.js",
|
||||
"author": "Navy.gif",
|
||||
|
@ -24,8 +24,8 @@ class MasterLogger {
|
||||
for (const type of this.types) {
|
||||
Object.defineProperty(this, type, {
|
||||
// Only write debug outputs if debug mode is enabled
|
||||
value: (msg) => msg.type === 'debug' && debug || msg.type !== 'debug'
|
||||
? this.write(type, msg) : null
|
||||
value: (msg, child) => msg.type === 'debug' && debug || msg.type !== 'debug'
|
||||
? this.write(type, msg, child) : null
|
||||
});
|
||||
}
|
||||
this.colours = { ...Defaults.Colours, ...customColors };
|
||||
@ -44,7 +44,7 @@ class MasterLogger {
|
||||
child.on('message', (msg) => {
|
||||
if (!msg._logger) return;
|
||||
const { message, type } = msg;
|
||||
this[type](message);
|
||||
this[type](message, child);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user