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 ba4448e commit 150138eCopy full SHA for 150138e
lib/vscode/src/vs/server/node/connection.ts
@@ -136,14 +136,15 @@ export class ExtensionHostConnection extends Connection {
136
{
137
env: {
138
...process.env,
139
- AMD_ENTRYPOINT: 'vs/workbench/services/extensions/node/extensionHostProcess',
140
- PIPE_LOGGING: 'true',
141
- VERBOSE_LOGGING: 'true',
+ VSCODE_AMD_ENTRYPOINT: 'vs/workbench/services/extensions/node/extensionHostProcess',
+ VSCODE_PIPE_LOGGING: 'true',
+ VSCODE_VERBOSE_LOGGING: 'true',
142
VSCODE_EXTHOST_WILL_SEND_SOCKET: 'true',
143
VSCODE_HANDLES_UNCAUGHT_ERRORS: 'true',
144
VSCODE_LOG_STACK: 'false',
145
VSCODE_LOG_LEVEL: process.env.LOG_LEVEL,
146
VSCODE_NLS_CONFIG: JSON.stringify(config),
147
+ VSCODE_PARENT_PID: String(process.pid),
148
},
149
silent: true,
150
0 commit comments