diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 13:50:27 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-23 18:02:17 +1000 |
| commit | a7cd7bb8292861168860cf7a3d074db80cfd99b0 (patch) | |
| tree | 84dbd4b0101c86c5045459d97425e2e9bc7c8206 /compiler/rustc_interface/src/interface.rs | |
| parent | 725292315e2867102c7955e40108744aabdd192b (diff) | |
| download | rust-a7cd7bb8292861168860cf7a3d074db80cfd99b0.tar.gz rust-a7cd7bb8292861168860cf7a3d074db80cfd99b0.zip | |
Remove `#[macro_use] extern crate tracing` from `rustc_interface`.
Diffstat (limited to 'compiler/rustc_interface/src/interface.rs')
| -rw-r--r-- | compiler/rustc_interface/src/interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/interface.rs b/compiler/rustc_interface/src/interface.rs index d43be6cebcb..5254a6576f9 100644 --- a/compiler/rustc_interface/src/interface.rs +++ b/compiler/rustc_interface/src/interface.rs @@ -11,7 +11,6 @@ use rustc_data_structures::sync::Lrc; use rustc_errors::registry::Registry; use rustc_errors::{DiagCtxt, ErrorGuaranteed}; use rustc_lint::LintStore; - use rustc_middle::ty; use rustc_middle::ty::CurrentGcx; use rustc_middle::util::Providers; @@ -28,6 +27,7 @@ use rustc_span::FileName; use std::path::PathBuf; use std::result; use std::sync::Arc; +use tracing::trace; pub type Result<T> = result::Result<T, ErrorGuaranteed>; |
