about summary refs log tree commit diff
path: root/compiler/rustc_mir_dataflow/src/rustc_peek.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-22 14:45:14 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-23 18:02:40 +1000
commit9287aede315833ed6220ba5ad1cfd2ce13249b92 (patch)
tree98a85113b3e869210ccdaba6ed388e977bd67be7 /compiler/rustc_mir_dataflow/src/rustc_peek.rs
parentbb364fe9502e1a70c9464bbfdbc40a280caad762 (diff)
downloadrust-9287aede315833ed6220ba5ad1cfd2ce13249b92.tar.gz
rust-9287aede315833ed6220ba5ad1cfd2ce13249b92.zip
Remove `#[macro_use] extern crate tracing` from `rustc_mir_dataflow`.
Diffstat (limited to 'compiler/rustc_mir_dataflow/src/rustc_peek.rs')
-rw-r--r--compiler/rustc_mir_dataflow/src/rustc_peek.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_mir_dataflow/src/rustc_peek.rs b/compiler/rustc_mir_dataflow/src/rustc_peek.rs
index d7e3c91b875..1de9055273b 100644
--- a/compiler/rustc_mir_dataflow/src/rustc_peek.rs
+++ b/compiler/rustc_mir_dataflow/src/rustc_peek.rs
@@ -18,6 +18,7 @@ use rustc_middle::mir::{self, Body, Local, Location};
 use rustc_middle::ty::{self, Ty, TyCtxt};
 use rustc_span::symbol::{sym, Symbol};
 use rustc_span::Span;
+use tracing::{debug, info};
 
 pub struct SanityCheck;