diff --git a/lib/util.js b/lib/util.js index 93bcb343a9eefc..45d98de194c836 100644 --- a/lib/util.js +++ b/lib/util.js @@ -277,12 +277,12 @@ function debuglog(set) { if (!debugs[set]) { if (debugEnvRegex.test(set)) { const pid = process.pid; - debugs[set] = function() { + debugs[set] = function debug() { const msg = exports.format.apply(exports, arguments); console.error('%s %d: %s', set, pid, msg); }; } else { - debugs[set] = function() {}; + debugs[set] = function debug() {}; } } return debugs[set];