Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

fix logging of rls spawn from PATH #450

Merged
merged 1 commit into from Nov 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ class ClientWorkspace {
childProcessPromise = Promise.resolve(child_process.spawn(rls_path, [], { env }));
} else if (this.config.rustupDisabled) {
const env = await this.makeRlsEnv(true);
console.info('running ' + rls_path);
console.info('running rls from $PATH');
childProcessPromise = Promise.resolve(child_process.spawn('rls', [], { env }));
} else {
const env = await this.makeRlsEnv();
Expand Down