Closed Didas-git closed 1 year ago
Interesting, looks similar to #5. What OS are you running this on?
Im running it on WSL2.0 Ubuntu on Win11
same stuff, macos arm
so far it's macos arm for me, WSL/Win11 for Didas and Fedora 38 in the other issue.
Makes me wonder whether this extension was actually tested thoroughly before the blog post went live?
The command actually is unwrapped to
node --log-deopt --redirect-code-traces --redirect-code-traces-to=/dev/null --log-ic --log-maps --log-maps-details --log-code --log-source-code --prof --log-internal-timer-events --detailed-line-info --logfile=v8.log --no-logfile-per-isolate FILE -p PROJ
the issue is in redirect-code-traces-to=/dev/null. If I change it to some local file, it's ok
It looks like this is a duplicate of #5. See https://github.com/microsoft/deoptexplorer-vscode/issues/5#issuecomment-1550427628 for a potential workaround for the time being.
Running
dexnode strict.js
in node 20 gives the following error:For what i can see
redirect-code-traces-to
is defaulting to/dev/null
and trying to override it doesnt seem to work, although this might not be the issue i want to leave it here as a note.