diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-08-31 14:46:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-31 14:46:12 +0200 |
| commit | 893d073a2e27634aa8b68f5b788879c156d9ea08 (patch) | |
| tree | c694849e3051064b4c782447422243b32a584415 /src/librustdoc/json/mod.rs | |
| parent | 7d025bb63d2f2c2a69cd23bb4befa46a8753f498 (diff) | |
| parent | ee5ec5a1966d3c77cb64fb9900b472765bf76359 (diff) | |
| download | rust-893d073a2e27634aa8b68f5b788879c156d9ea08.tar.gz rust-893d073a2e27634aa8b68f5b788879c156d9ea08.zip | |
Rollup merge of #129774 - nnethercote:rm-extern-crate-tracing-remainder, r=GuillaumeGomez
Remove `#[macro_use] extern crate tracing` from rustdoc and rustfmt A follow-up to #129767 and earlier PRs doing this for `rustc_*` crates. r? ```@GuillaumeGomez```
Diffstat (limited to 'src/librustdoc/json/mod.rs')
| -rw-r--r-- | src/librustdoc/json/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/json/mod.rs b/src/librustdoc/json/mod.rs index e2860292aa3..1b2d61a7637 100644 --- a/src/librustdoc/json/mod.rs +++ b/src/librustdoc/json/mod.rs @@ -22,6 +22,7 @@ use rustdoc_json_types as types; // the one from rustc_data_structures, as they're different types due to sysroots. // See #110051 and #127456 for details use rustdoc_json_types::FxHashMap; +use tracing::{debug, trace}; use crate::clean::types::{ExternalCrate, ExternalLocation}; use crate::clean::ItemKind; |
