We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2240e07 commit 589de99Copy full SHA for 589de99
CHANGELOG.md
@@ -5,6 +5,7 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he
5
## Nightly (only)
6
7
- feat: make Deno easier to configure
8
+- fix: extraneous warnings when restarting debugging ([vscode#156432](https://github.com/microsoft/vscode/issues/156432))
9
10
## v1.70 (July 2022)
11
src/targets/node/killTree.ts
@@ -27,6 +27,7 @@ export function killTree(
27
try {
28
execSync(
29
`${TASK_KILL} ${behavior === KillBehavior.Forceful ? '/F' : ''} /T /PID ${processId}`,
30
+ { stdio: 'pipe' },
31
);
32
return true;
33
} catch (err) {
0 commit comments