Fix TS Server logging on windows (#175600)

Fixes #175172

We need to pass TS the windows style path here
This commit is contained in:
Matt Bierner
2023-02-28 13:36:27 -08:00
committed by GitHub
parent 578ad24ac3
commit 28d9a83f12

View File

@@ -232,7 +232,7 @@ export class TypeScriptServerSpawner {
tsServerLog = { type: 'file', uri: logFilePath };
args.push('--logVerbosity', TsServerLogLevel.toString(configuration.tsServerLogLevel));
args.push('--logFile', logFilePath.path);
args.push('--logFile', logFilePath.fsPath);
}
}
}