about summary refs log tree commit diff
path: root/src/librustdoc/clean/mod.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-08-31 14:46:12 +0200
committerGitHub <noreply@github.com>2024-08-31 14:46:12 +0200
commit893d073a2e27634aa8b68f5b788879c156d9ea08 (patch)
treec694849e3051064b4c782447422243b32a584415 /src/librustdoc/clean/mod.rs
parent7d025bb63d2f2c2a69cd23bb4befa46a8753f498 (diff)
parentee5ec5a1966d3c77cb64fb9900b472765bf76359 (diff)
downloadrust-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/clean/mod.rs')
-rw-r--r--src/librustdoc/clean/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/clean/mod.rs b/src/librustdoc/clean/mod.rs
index 3cb02f379e4..710bd4a5fdf 100644
--- a/src/librustdoc/clean/mod.rs
+++ b/src/librustdoc/clean/mod.rs
@@ -52,6 +52,7 @@ use rustc_span::symbol::{kw, sym, Ident, Symbol};
 use rustc_span::ExpnKind;
 use rustc_trait_selection::traits::wf::object_region_bounds;
 use thin_vec::ThinVec;
+use tracing::{debug, instrument};
 use utils::*;
 use {rustc_ast as ast, rustc_attr as attr, rustc_hir as hir};