Skip to content

Commit 466ff22

Browse files
committed
fix(lib/vscode): update path for logService
1 parent f73f964 commit 466ff22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/vscode/src/vs/server/node/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export class Vscode {
234234
*/
235235
const logService = new MultiplexLogService([
236236
new ConsoleLogger(getLogLevel(environmentService)),
237-
new SpdLogLogger(RemoteExtensionLogFileName, environmentService.logsPath, false, getLogLevel(environmentService))
237+
new SpdLogLogger(RemoteExtensionLogFileName, path.join(environmentService.logsPath, "server.log"), false, getLogLevel(environmentService))
238238
])
239239
const fileService = new FileService(logService);
240240
fileService.registerProvider(Schemas.file, new DiskFileSystemProvider(logService));

0 commit comments

Comments
 (0)