From 19c2f31f226a3c5f78b695c942abaa825517aa1c Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 22 Mar 2021 10:37:44 -0700 Subject: [PATCH] fixup: remove comment in server.ts --- lib/vscode/src/vs/server/node/server.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/vscode/src/vs/server/node/server.ts b/lib/vscode/src/vs/server/node/server.ts index d79c4ff0..b85584e3 100644 --- a/lib/vscode/src/vs/server/node/server.ts +++ b/lib/vscode/src/vs/server/node/server.ts @@ -216,16 +216,6 @@ export class Vscode { const environmentService = new NativeEnvironmentService(args); // https://github.com/cdr/code-server/issues/1693 fs.mkdirSync(environmentService.globalStorageHome.fsPath, { recursive: true }); - /* - NOTE@coder: Made these updates on based on this file (and lines): - Reference: - ../../electron-browser/sharedProcess/sharedProcessMain.ts#L144-L149 - - More details (from @code-asher): - I think the logLevel channel is only used in the electron version of vscode so we can probably skip it. - With that in mind we wouldn't need logLevelClient which means we wouldn't need the follower service - either and we can use the multiplex log service directly. - 3/11/21 @jsjoeio - */ const logService = new MultiplexLogService([ new ConsoleLogger(getLogLevel(environmentService)), new SpdLogLogger(RemoteExtensionLogFileName, path.join(environmentService.logsPath, `${RemoteExtensionLogFileName}.log`), false, getLogLevel(environmentService))