Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/internal/http2/core.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -18,7 +18,6 @@ const net = require('net');
const { Duplex } = require('stream');
const tls = require('tls');
const { URL } = require('url');
const util = require('util');

const { kIncomingMessage } = require('_http_common');
const { kServerResponse } = require('_http_server');
Expand DownExpand Up@@ -118,6 +117,7 @@ const {
} = require('internal/stream_base_commons');
const { kTimeout } = require('internal/timers');
const { isArrayBufferView } = require('internal/util/types');
const { format } = require('internal/util/inspect');

const hasOwnProperty = Object.prototype.hasOwnProperty;

Expand All@@ -132,7 +132,7 @@ const { UV_EOF } = internalBinding('uv');

const { StreamPipe } = internalBinding('stream_pipe');
const { _connectionListener: httpConnectionListener } = http;
const debug = util.debuglog('http2');
const debug = require('internal/util/debuglog').debuglog('http2');

const kMaxFrameSize = (2 ** 24) - 1;
const kMaxInt = (2 ** 32) - 1;
Expand DownExpand Up@@ -1085,7 +1085,7 @@ class Http2Session extends EventEmitter {
localSettings: this.localSettings,
remoteSettings: this.remoteSettings
};
return `Http2Session ${util.format(obj)}`;
return `Http2Session ${format(obj)}`;
}

// The socket owned by this session
Expand DownExpand Up@@ -1666,7 +1666,7 @@ class Http2Stream extends Duplex {
readableState: this._readableState,
writableState: this._writableState
};
return `Http2Stream ${util.format(obj)}`;
return `Http2Stream ${format(obj)}`;
}

get bufferSize() {
Expand Down