Skip to content

Commit 0b9f11b

Browse files
santigimenodanielleadams
authored andcommitted
http2: fix debugStream method
So it actually logs something when debug is activated. PR-URL: #45129 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
1 parent 5d964cd commit 0b9f11b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/internal/http2/core.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,10 @@ const { _connectionListener: httpConnectionListener } = http;
189189
let debug = require('internal/util/debuglog').debuglog('http2', (fn) => {
190190
debug = fn;
191191
});
192+
const debugEnabled = debug.enabled;
192193

193194
function debugStream(id, sessionType, message, ...args) {
194-
if (!debug.enabled) {
195+
if (!debugEnabled) {
195196
return;
196197
}
197198
debug('Http2Stream %s [Http2Session %s]: ' + message,

0 commit comments

Comments
 (0)