You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Platform: Darwin 18.6.0 Darwin Kernel Version 18.6.0: Thu Apr 25 23:16:27 PDT 2019; root:xnu-4903.261.4~2/RELEASE_X86_64 x86_64
$ node --inspect-brk --debugnode: [DEP0062]: `node --inspect --debug-brk` is deprecated. Please use `node --inspect-brk` instead.
Two issues here. The error message suggests that node was called with options --inspect and --debug-brk which is not the case. And it recommends using --inspect-brk instead, one of the options actually used.
The text was updated successfully, but these errors were encountered:
This commit simplifies the DEP0062 error logic. Instead of
looking for certain combinations of flags, just show an error
for any usage of --debug or --debug-brk.
PR-URL: nodejs#28589Fixes: nodejs#28588
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
This commit simplifies the DEP0062 error logic. Instead of
looking for certain combinations of flags, just show an error
for any usage of --debug or --debug-brk.
PR-URL: #28589Fixes: #28588
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
Two issues here. The error message suggests that node was called with options
--inspect
and--debug-brk
which is not the case. And it recommends using--inspect-brk
instead, one of the options actually used.The text was updated successfully, but these errors were encountered: