diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 2 |
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 9901fe931..d850ded37 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -434,7 +434,7 @@ fn loop_turn( | |||
434 | } | 434 | } |
435 | 435 | ||
436 | let loop_duration = loop_start.elapsed(); | 436 | let loop_duration = loop_start.elapsed(); |
437 | if loop_duration > Duration::from_millis(10) { | 437 | if loop_duration > Duration::from_millis(100) { |
438 | log::error!("overly long loop turn: {:?}", loop_duration); | 438 | log::error!("overly long loop turn: {:?}", loop_duration); |
439 | if env::var("RA_PROFILE").is_ok() { | 439 | if env::var("RA_PROFILE").is_ok() { |
440 | show_message( | 440 | show_message( |