Open elemental-mind opened 2 months ago
1.1.30-canary.71+af82a446d, VSCode Extension Version v0.0.15
Microsoft Windows NT 10.0.19045.0 x64
console.log("This should be displayed on the debug console."); console.log("This as well"); console.log("But it simply does not show up");
The log statements get logged to the debug console.
The debug console simply shows:
Debugger attached. Debugger detached.
The console.log statements are missing.
This is the excerpt of the launch.json:
launch.json
"configurations": [ { "name": "Launch and attach", "type": "bun", "request": "attach", "url": "ws://127.0.0.1:5000/test", "preLaunchTask": "Bun: Start Debugger", "internalConsoleOptions": "openOnSessionStart" }, ]
I have the same problem in Nixos
What version of Bun is running?
1.1.30-canary.71+af82a446d, VSCode Extension Version v0.0.15
What platform is your computer?
Microsoft Windows NT 10.0.19045.0 x64
What steps can reproduce the bug?
What is the expected behavior?
The log statements get logged to the debug console.
What do you see instead?
The debug console simply shows:
The console.log statements are missing.
Additional information
This is the excerpt of the
launch.json
: