Skip to content

Commit

Permalink
Fix TS Server logging on windows (#175600)
Browse files Browse the repository at this point in the history
Fixes #175172

We need to pass TS the windows style path here
  • Loading branch information
mjbvz committed Feb 28, 2023
1 parent 578ad24 commit 28d9a83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down

0 comments on commit 28d9a83

Please sign in to comment.