Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
373 bytes
|
Line | |
---|
1 | module.exports = inspectorLog;
|
---|
2 |
|
---|
3 | // black hole
|
---|
4 | const nullStream = new (require('stream').Writable)();
|
---|
5 | nullStream._write = () => {};
|
---|
6 |
|
---|
7 | /**
|
---|
8 | * Outputs a `console.log()` to the Node.js Inspector console *only*.
|
---|
9 | */
|
---|
10 | function inspectorLog() {
|
---|
11 | const stdout = console._stdout;
|
---|
12 | console._stdout = nullStream;
|
---|
13 | console.log.apply(console, arguments);
|
---|
14 | console._stdout = stdout;
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.