Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2020-03-14 14:55:44 +0300
committerBrian White <mscdex@mscdex.net>2020-05-31 00:24:43 +0300
commitc24b74a7abec0848484671771d250cfd961f128e (patch)
tree1e4fec15ee4de3ab4bc483f759322389d71932ec /lib/internal/worker
parent3f32126fd554be32cb53a2458849697146145fda (diff)
lib: improve debuglog() performance
PR-URL: https://github.com/nodejs/node/pull/32260 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'lib/internal/worker')
-rw-r--r--lib/internal/worker/io.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/internal/worker/io.js b/lib/internal/worker/io.js
index 0a97f17595f..60dd8cd67d6 100644
--- a/lib/internal/worker/io.js
+++ b/lib/internal/worker/io.js
@@ -31,7 +31,9 @@ const {
const { Readable, Writable } = require('stream');
const EventEmitter = require('events');
const { inspect } = require('internal/util/inspect');
-const debug = require('internal/util/debuglog').debuglog('worker');
+let debug = require('internal/util/debuglog').debuglog('worker', (fn) => {
+ debug = fn;
+});
const kIncrementsPortRef = Symbol('kIncrementsPortRef');
const kName = Symbol('kName');