Skip to content

Commit dd9ead5

Browse files
committed
Auto merge of rust-lang#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`
2 parents baa2ccc + 557c5b4 commit dd9ead5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ide-db/src/apply_change.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ impl RootDatabase {
2020
pub fn apply_change(&mut self, change: Change) {
2121
let _p = profile::span("RootDatabase::apply_change");
2222
self.request_cancellation();
23-
tracing::info!("apply_change {:?}", change);
23+
tracing::trace!("apply_change {:?}", change);
2424
if let Some(roots) = &change.roots {
2525
let mut local_roots = FxHashSet::default();
2626
let mut library_roots = FxHashSet::default();

0 commit comments

Comments
 (0)