Remove debug print when resolving client settings in ruff server (#10799)

This was a statement used as part of the test plan in #10764 that was
erroneously committed in 8aa31f4c74.
This commit is contained in:
Jane Lewis 2024-04-05 17:13:25 -07:00 committed by GitHub
parent c11e6d709c
commit 323264dec2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,12 +96,10 @@ impl Session {
}
pub(crate) fn take_snapshot(&self, url: &Url) -> Option<DocumentSnapshot> {
let resolved_settings = self.workspaces.client_settings(url, &self.global_settings);
tracing::info!("Resolved settings for document {url}: {resolved_settings:?}");
Some(DocumentSnapshot {
configuration: self.workspaces.configuration(url)?.clone(),
resolved_client_capabilities: self.resolved_client_capabilities.clone(),
client_settings: resolved_settings,
client_settings: self.workspaces.client_settings(url, &self.global_settings),
document_ref: self.workspaces.snapshot(url)?,
position_encoding: self.position_encoding,
url: url.clone(),