mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
Auto merge of #13043 - Veykril:ide-db-trace, r=Veykril
minor: Change tracing event level in apply_change This is a rather spammy one, it shouldn't be `info`
This commit is contained in:
commit
dd9ead591e
@ -20,7 +20,7 @@ impl RootDatabase {
|
|||||||
pub fn apply_change(&mut self, change: Change) {
|
pub fn apply_change(&mut self, change: Change) {
|
||||||
let _p = profile::span("RootDatabase::apply_change");
|
let _p = profile::span("RootDatabase::apply_change");
|
||||||
self.request_cancellation();
|
self.request_cancellation();
|
||||||
tracing::info!("apply_change {:?}", change);
|
tracing::trace!("apply_change {:?}", change);
|
||||||
if let Some(roots) = &change.roots {
|
if let Some(roots) = &change.roots {
|
||||||
let mut local_roots = FxHashSet::default();
|
let mut local_roots = FxHashSet::default();
|
||||||
let mut library_roots = FxHashSet::default();
|
let mut library_roots = FxHashSet::default();
|
||||||
|
Loading…
Reference in New Issue
Block a user