Skip to content

Commit d56dbc9

Browse files
authored
Merge pull request microsoft#175602 from mjbvz/spotty-platypus
Fix TS Server logging on windows
2 parents 3c8099c + 4b0586c commit d56dbc9

File tree

1 file changed

+1
-1
lines changed
  • extensions/typescript-language-features/src/tsServer

1 file changed

+1
-1
lines changed

extensions/typescript-language-features/src/tsServer/spawner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export class TypeScriptServerSpawner {
232232
tsServerLog = { type: 'file', uri: logFilePath };
233233

234234
args.push('--logVerbosity', TsServerLogLevel.toString(configuration.tsServerLogLevel));
235-
args.push('--logFile', logFilePath.path);
235+
args.push('--logFile', logFilePath.fsPath);
236236
}
237237
}
238238
}

0 commit comments

Comments
 (0)