about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/context.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-05-22 14:09:17 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-05-23 18:02:17 +1000
commitc7da1a5bb8f0f4e167960b5898772edf2554ce3c (patch)
tree78b6d1a2181ddbb8ef950f9820d6e699a932a8c4 /compiler/rustc_lint/src/context.rs
parentc4bdd298fe94784f322e61a65bac6ee8944a6720 (diff)
downloadrust-c7da1a5bb8f0f4e167960b5898772edf2554ce3c.tar.gz
rust-c7da1a5bb8f0f4e167960b5898772edf2554ce3c.zip
Remove `#[macro_use] extern crate tracing` from `rustc_lint`.
Diffstat (limited to 'compiler/rustc_lint/src/context.rs')
-rw-r--r--compiler/rustc_lint/src/context.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint/src/context.rs b/compiler/rustc_lint/src/context.rs
index deeb3ae090c..c23a67f6131 100644
--- a/compiler/rustc_lint/src/context.rs
+++ b/compiler/rustc_lint/src/context.rs
@@ -39,10 +39,10 @@ use rustc_span::edit_distance::find_best_match_for_names;
 use rustc_span::symbol::{sym, Ident, Symbol};
 use rustc_span::Span;
 use rustc_target::abi;
-
 use std::cell::Cell;
 use std::iter;
 use std::slice;
+use tracing::debug;
 
 mod diagnostics;