diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2021-09-20 15:24:47 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2021-09-20 15:24:47 +0000 |
| commit | 428138071748e81eb67bb090cb9cd3f78299442b (patch) | |
| tree | c44060a8718fddd67f8577c2d41b90848206b555 /compiler/rustc_errors/src | |
| parent | 38e576423dc56a006ccf0b72e106f09bdea6efc2 (diff) | |
| download | rust-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.rs | 4 |
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}; |
