aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop.rs')
-rw-r--r--crates/ra_lsp_server/src/main_loop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs
index 726c758aa..03c834dbc 100644
--- a/crates/ra_lsp_server/src/main_loop.rs
+++ b/crates/ra_lsp_server/src/main_loop.rs
@@ -65,7 +65,7 @@ pub fn main_loop(
65 let workspaces = match ws_worker.recv().unwrap() { 65 let workspaces = match ws_worker.recv().unwrap() {
66 Ok(ws) => vec![ws], 66 Ok(ws) => vec![ws],
67 Err(e) => { 67 Err(e) => {
68 log::warn!("loading workspace failed: {}", e); 68 log::error!("loading workspace failed: {}", e);
69 Vec::new() 69 Vec::new()
70 } 70 }
71 }; 71 };