(...args)
| 410 | |
| 411 | const consoleMethods = { |
| 412 | log(...args) { |
| 413 | if (onLog.hasSubscribers) { |
| 414 | onLog.publish(args); |
| 415 | } |
| 416 | this[kWriteToConsole](kUseStdout, this[kFormatForStdout](args)); |
| 417 | }, |
| 418 | |
| 419 | info(...args) { |
| 420 | if (onInfo.hasSubscribers) { |