Fix wrong type check
This commit is contained in:
parent
2c447f5cec
commit
f80c950e71
@ -24,7 +24,7 @@ class MasterLogger {
|
||||
for (const type of this.types) {
|
||||
Object.defineProperty(this, type, {
|
||||
// Only write debug outputs if debug mode is enabled
|
||||
value: (msg) => type === 'debug' && debug || type !== 'debug'
|
||||
value: (msg) => msg.type === 'debug' && debug || msg.type !== 'debug'
|
||||
? this.write(type, msg) : null
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user