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

Commit 111c34a

Browse files
author
hyperfekt
committed
fix logging of rls spawn from PATH
1 parent 548f3fe commit 111c34a

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)