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

Commit 715512d

Browse files
authored
Merge pull request #450 from hyperfekt/fix_rls_path_log
fix logging of rls spawn from PATH
2 parents 548f3fe + 111c34a commit 715512d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ class ClientWorkspace {
379379
childProcessPromise = Promise.resolve(child_process.spawn(rls_path, [], { env }));
380380
} else if (this.config.rustupDisabled) {
381381
const env = await this.makeRlsEnv(true);
382-
console.info('running ' + rls_path);
382+
console.info('running rls from $PATH');
383383
childProcessPromise = Promise.resolve(child_process.spawn('rls', [], { env }));
384384
} else {
385385
const env = await this.makeRlsEnv();

0 commit comments

Comments
 (0)