diff options
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index ff6fdd66..8818c949 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -230,6 +230,10 @@ export async function startContinuePythonServer() { detached: true, stdio: "ignore", }); + child.on("error", (err: any) => { + console.error("Failed to start subprocess.", err); + }); + child.unref(); // Write the current version of vscode extension to a file called server_version.txt |