From 65caa26d40777131d8b95f71bc3de2a4da6d0e43 Mon Sep 17 00:00:00 2001 From: Asher Date: Mon, 23 Sep 2019 10:49:51 -0500 Subject: [PATCH] Pass log level to extension host --- src/connection.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/connection.ts b/src/connection.ts index d31e76b9..f687e039 100644 --- a/src/connection.ts +++ b/src/connection.ts @@ -123,6 +123,7 @@ export class ExtensionHostConnection extends Connection { VSCODE_EXTHOST_WILL_SEND_SOCKET: "true", VSCODE_HANDLES_UNCAUGHT_ERRORS: "true", VSCODE_LOG_STACK: "false", + VSCODE_LOG_LEVEL: this.environment.verbose ? "trace" : this.environment.log, VSCODE_NLS_CONFIG: JSON.stringify(config), }, silent: true,