diff options
author | Anna Henningsen <anna@addaleax.net> | 2018-05-27 16:41:35 +0200 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2018-05-31 09:54:49 +0200 |
commit | 15c7a49bfca1db23f4f7a3a79aea04a0075fbd62 (patch) | |
tree | 157b58599337e4c0d00f174e0e76b11c8b77b783 /vcbuild.bat | |
parent | bd85844c4e80c7aa1fc02a986c7619c3956b0061 (diff) | |
download | node-new-15c7a49bfca1db23f4f7a3a79aea04a0075fbd62.tar.gz |
http2: switch to new runtime-controlled debugging system
Remove `--debug-http2` as a compile-time feature and
make all debug statements available using `NODE_DEBUG_NATIVE=http2`
at runtime.
This probably makes the debugging-enabled case a bit slower due to
additional string concatenations, but switching to a runtime-checking
system makes debugging more flexible and can be applied more easily
to other parts of the source code as well.
PR-URL: https://github.com/nodejs/node/pull/20987
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r-- | vcbuild.bat | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vcbuild.bat b/vcbuild.bat index 37df2c2531..c6921ab191 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -114,7 +114,6 @@ if /i "%1"=="enable-vtune" set enable_vtune_arg=1&goto arg-ok if /i "%1"=="dll" set dll=1&goto arg-ok if /i "%1"=="static" set enable_static=1&goto arg-ok if /i "%1"=="no-NODE-OPTIONS" set no_NODE_OPTIONS=1&goto arg-ok -if /i "%1"=="debug-http2" set debug_http2=1&goto arg-ok if /i "%1"=="debug-nghttp2" set debug_nghttp2=1&goto arg-ok if /i "%1"=="link-module" set "link_module= --link-module=%2%link_module%"&goto arg-ok-2 if /i "%1"=="no-cctest" set no_cctest=1&goto arg-ok |