http2: reduce usage of require('util')

PR-URL: https://github.com/nodejs/node/pull/26784
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
This commit is contained in:
toshi1127 2019-03-20 02:27:08 +09:00 committed by ZYSzys
parent 25b78c0940
commit b8d4bafa03

View File

@ -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');
@ -119,6 +118,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;
@ -133,7 +133,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;
@ -1077,7 +1077,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
@ -1653,7 +1653,7 @@ class Http2Stream extends Duplex {
readableState: this._readableState,
writableState: this._writableState
};
return `Http2Stream ${util.format(obj)}`;
return `Http2Stream ${format(obj)}`;
}
get bufferSize() {