mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
minor: Change tracing event level in apply_change
This commit is contained in:
parent
8fa8bf1847
commit
557c5b4dc5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue