Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-lsp/src/client.rs')
| -rw-r--r-- | helix-lsp/src/client.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index a7dac5d0..205f90e3 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -4,6 +4,7 @@ use crate::{ transport::{Payload, Transport}, Call, Error, LanguageServerId, OffsetEncoding, Result, }; +use log::info; use crate::lsp::{ self, notification::DidChangeWorkspaceFolders, CodeActionCapabilityResolveSupport, @@ -219,6 +220,7 @@ impl Client { UnboundedReceiver<(LanguageServerId, Call)>, Arc<Notify>, )> { + info!("Starting lsp {name:?} in root {root_path:?}"); // Resolve path to the binary let cmd = helix_stdx::env::which(cmd)?; |