diff options
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 269ce13d..d8208eed 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -801,7 +801,7 @@ impl Application { } } } - e => unreachable!("{:?}", e), + Call::Invalid { id } => log::error!("LSP invalid method call id={:?}", id), } } |