aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-04-02 17:35:22 +0100
committerGitHub <[email protected]>2021-04-02 17:35:22 +0100
commit9bcdbefc7b657f34704439d068113180b14359dc (patch)
treeb74e9eec89ae220ef5e13449d65ed5ccdb2ca067
parentd619070b8329543f46bd8b02c227de2bc73d9fe6 (diff)
parentfeae14be1167c22d74247b8fbfb1c82af6e7ebd0 (diff)
Merge #8291
8291: Put the revision in the startup message r=jonas-schievink a=lf- Co-authored-by: Jade <[email protected]>
-rw-r--r--crates/rust-analyzer/src/bin/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/bin/main.rs b/crates/rust-analyzer/src/bin/main.rs
index ae99eefe3..3b9b9e8b4 100644
--- a/crates/rust-analyzer/src/bin/main.rs
+++ b/crates/rust-analyzer/src/bin/main.rs
@@ -133,7 +133,7 @@ mod tracing_setup {
133} 133}
134 134
135fn run_server() -> Result<()> { 135fn run_server() -> Result<()> {
136 log::info!("server will start"); 136 log::info!("server version {} will start", env!("REV"));
137 137
138 let (connection, io_threads) = Connection::stdio(); 138 let (connection, io_threads) = Connection::stdio();
139 139