MCPcopy Index your code
hub / github.com/nodejs/node / debugStream

Function debugStream

lib/internal/http2/core.js:215–221  ·  view source on GitHub ↗
(id, sessionType, message, ...args)

Source from the content-addressed store, hash-verified

213const debugEnabled = debug.enabled;
214
215function debugStream(id, sessionType, message, ...args) {
216 if (!debugEnabled) {
217 return;
218 }
219 debug('Http2Stream %s [Http2Session %s]: ' + message,
220 id, sessionName(sessionType), ...args);
221}
222
223function debugStreamObj(stream, message, ...args) {
224 const session = stream[kSession];

Callers 4

debugStreamObjFunction · 0.85
onSessionHeadersFunction · 0.85
onPriorityFunction · 0.85
_destroyMethod · 0.85

Calls 2

sessionNameFunction · 0.85
debugFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…