about summary refs log tree commit diff
path: root/src/librustdoc/html/render/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/html/render/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/html/render/mod.rs')
-rw-r--r--src/librustdoc/html/render/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs
index 47f321a4c4a..fc4033f8320 100644
--- a/src/librustdoc/html/render/mod.rs
+++ b/src/librustdoc/html/render/mod.rs
@@ -57,6 +57,7 @@ use rustc_span::symbol::{sym, Symbol};
 use rustc_span::{BytePos, FileName, RealFileName, DUMMY_SP};
 use serde::ser::SerializeMap;
 use serde::{Serialize, Serializer};
+use tracing::{debug, info};
 
 pub(crate) use self::context::*;
 pub(crate) use self::span_map::{collect_spans_and_sources, LinkFromSrc};