diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 07:51:27 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 16:03:48 +1000 |
| commit | e60c1916e0d0ff0cad9d8fce049c3bc31eeb34f0 (patch) | |
| tree | 6e9fe621ac77509bd407874d242cb6267c1b38bc /compiler/rustc_span/src/source_map.rs | |
| parent | 220f3ab825d135c82243fc83ebf6286d94cdab96 (diff) | |
| download | rust-e60c1916e0d0ff0cad9d8fce049c3bc31eeb34f0.tar.gz rust-e60c1916e0d0ff0cad9d8fce049c3bc31eeb34f0.zip | |
Remove `#[macro_use]` extern crate tracing` from `rustc_span`.
Because explicit macro imports are better than implicit macro imports.
Diffstat (limited to 'compiler/rustc_span/src/source_map.rs')
| -rw-r--r-- | compiler/rustc_span/src/source_map.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_span/src/source_map.rs b/compiler/rustc_span/src/source_map.rs index 2093dcf0e83..fb212d67997 100644 --- a/compiler/rustc_span/src/source_map.rs +++ b/compiler/rustc_span/src/source_map.rs @@ -16,6 +16,7 @@ use rustc_macros::{Decodable, Encodable}; use std::fs; use std::io::{self, BorrowedBuf, Read}; use std::path; +use tracing::{debug, instrument, trace}; #[cfg(test)] mod tests; |
