diff options
Diffstat (limited to 'crates/rust-analyzer/src/bin/main.rs')
-rw-r--r-- | crates/rust-analyzer/src/bin/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/bin/main.rs b/crates/rust-analyzer/src/bin/main.rs index ae99eefe3..873e82c7b 100644 --- a/crates/rust-analyzer/src/bin/main.rs +++ b/crates/rust-analyzer/src/bin/main.rs | |||
@@ -78,6 +78,7 @@ fn try_main() -> Result<()> { | |||
78 | path: cmd.path, | 78 | path: cmd.path, |
79 | load_output_dirs: cmd.load_output_dirs, | 79 | load_output_dirs: cmd.load_output_dirs, |
80 | with_proc_macro: cmd.with_proc_macro, | 80 | with_proc_macro: cmd.with_proc_macro, |
81 | skip_inference: cmd.skip_inference, | ||
81 | } | 82 | } |
82 | .run(verbosity)?, | 83 | .run(verbosity)?, |
83 | 84 | ||
@@ -133,7 +134,7 @@ mod tracing_setup { | |||
133 | } | 134 | } |
134 | 135 | ||
135 | fn run_server() -> Result<()> { | 136 | fn run_server() -> Result<()> { |
136 | log::info!("server will start"); | 137 | log::info!("server version {} will start", env!("REV")); |
137 | 138 | ||
138 | let (connection, io_threads) = Connection::stdio(); | 139 | let (connection, io_threads) = Connection::stdio(); |
139 | 140 | ||