Silence a bucketload of logs (#36534)

Closes #ISSUE

Release Notes:

- Silenced a bunch of logs that were on by default
This commit is contained in:
Conrad Irwin 2025-08-19 20:26:56 -06:00 committed by GitHub
parent b12d862236
commit cac80e2ebd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 23 additions and 38 deletions

View file

@ -296,7 +296,7 @@ impl LocalLspStore {
let stderr_capture = Arc::new(Mutex::new(Some(String::new())));
let server_id = self.languages.next_language_server_id();
log::info!(
log::trace!(
"attempting to start language server {:?}, path: {root_path:?}, id: {server_id}",
adapter.name.0
);
@ -7529,7 +7529,7 @@ impl LspStore {
.ok()
.flatten()?;
log::info!("Refreshing workspace configurations for servers {refreshed_servers:?}");
log::debug!("Refreshing workspace configurations for servers {refreshed_servers:?}");
// TODO this asynchronous job runs concurrently with extension (de)registration and may take enough time for a certain extension
// to stop and unregister its language server wrapper.
// This is racy : an extension might have already removed all `local.language_servers` state, but here we `.clone()` and hold onto it anyway.