We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8854a47 commit 03214a0Copy full SHA for 03214a0
client/src/client.ts
@@ -379,7 +379,7 @@ function constructArgs(ctx: vscode.ExtensionContext): string[] {
379
const ngLog: string = config.get('angular.log', 'off');
380
if (ngLog !== 'off') {
381
// Log file does not yet exist on disk. It is up to the server to create the file.
382
- const logFile = path.join(ctx.logPath, 'nglangsvc.log');
+ const logFile = path.join(ctx.logUri.fsPath, 'nglangsvc.log');
383
args.push('--logFile', logFile);
384
args.push('--logVerbosity', ngLog);
385
}
0 commit comments