about summary refs log tree commit diff
path: root/compiler/rustc_errors/src
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2021-09-20 15:24:47 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2021-09-20 15:24:47 +0000
commit428138071748e81eb67bb090cb9cd3f78299442b (patch)
treec44060a8718fddd67f8577c2d41b90848206b555 /compiler/rustc_errors/src
parent38e576423dc56a006ccf0b72e106f09bdea6efc2 (diff)
downloadrust-428138071748e81eb67bb090cb9cd3f78299442b.tar.gz
rust-428138071748e81eb67bb090cb9cd3f78299442b.zip
Add some more tracing
Diffstat (limited to 'compiler/rustc_errors/src')
-rw-r--r--compiler/rustc_errors/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs
index b1526cf78d2..ed805353c60 100644
--- a/compiler/rustc_errors/src/lib.rs
+++ b/compiler/rustc_errors/src/lib.rs
@@ -13,9 +13,11 @@
 #[macro_use]
 extern crate rustc_macros;
 
+#[macro_use]
+extern crate tracing;
+
 pub use emitter::ColorConfig;
 
-use tracing::debug;
 use Level::*;
 
 use emitter::{is_case_difference, Emitter, EmitterWriter};