A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/lsp/communication.rs')
| -rw-r--r-- | src/lsp/communication.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lsp/communication.rs b/src/lsp/communication.rs index 0013ad1..7bc6b7c 100644 --- a/src/lsp/communication.rs +++ b/src/lsp/communication.rs @@ -81,7 +81,7 @@ pub fn handler( } } else if let Some((s, took, t)) = map.remove(&x.id.i32()) { - log::info!("request {} took {:?}", x.id, took.elapsed()); + log::debug!("request {} took {:?}", x.id, took.elapsed()); match s.send(x) { Ok(()) => {} Err(e) => { |