Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0b9f11b

Browse filesBrowse 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
Copy full SHA for 0b9f11b

File tree

Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Open diff view settings
Collapse file

‎lib/internal/http2/core.js‎

Copy file name to clipboardExpand all lines: lib/internal/http2/core.js
+2-1Lines changed: 2 additions & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.