-
Notifications
You must be signed in to change notification settings - Fork 37.4k
Closed
Labels
debugDebug viewlet, configurations, breakpoints, adapter issuesDebug viewlet, configurations, breakpoints, adapter issuesfeature-requestRequest for new features or functionalityRequest for new features or functionalityverifiedVerification succeededVerification succeeded
Milestone
Description
- VSCode Version: 1.9.0
- OS Version: Windows 10
Steps to Reproduce:
- Launch debug task
- Watch debug console
The new update appears to have broken the debug output. Previously we would get the following when launching the debug task:
node --inspect=30770 --debug-brk --nolazy debugall.js
Debugger listening on port 30770.
Warning: This is an experimental feature and could change at any time.
This would then be followed by the normal debug output from our project. Now when we run the debug task, the above is the only thing showing in the debug console. The application functions normally so it is running, but no output is shown.
launch.json:
{
"version": "0.1.0",
"configurations": [
{
"name": "Debug All",
"type": "node2",
"program": "${workspaceRoot}/debugall.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}/",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development",
"LOGSQL": "false",
"USE_COMPRESSION": "false",
},
"sourceMaps": false,
"outDir": null,
"console": "internalConsole"
}
]
}osukaa, alex6o, carterw, tinovyatkin, adelphes and 22 moresaeedtabrizi and tonivj5
Metadata
Metadata
Assignees
Labels
debugDebug viewlet, configurations, breakpoints, adapter issuesDebug viewlet, configurations, breakpoints, adapter issuesfeature-requestRequest for new features or functionalityRequest for new features or functionalityverifiedVerification succeededVerification succeeded