diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 14:42:14 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-23 18:02:40 +1000 |
| commit | bb364fe9502e1a70c9464bbfdbc40a280caad762 (patch) | |
| tree | 5e4efa5e272cc8a7061147636d5af127952be828 /compiler/rustc_parse/src/parser/diagnostics.rs | |
| parent | 25393640537d3a0a7e8840fb6b12657d2c262275 (diff) | |
| download | rust-bb364fe9502e1a70c9464bbfdbc40a280caad762.tar.gz rust-bb364fe9502e1a70c9464bbfdbc40a280caad762.zip | |
Remove `#[macro_use] extern crate tracing` from `rustc_parse`.
Diffstat (limited to 'compiler/rustc_parse/src/parser/diagnostics.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/diagnostics.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_parse/src/parser/diagnostics.rs b/compiler/rustc_parse/src/parser/diagnostics.rs index ac12787f2ef..9677eea0604 100644 --- a/compiler/rustc_parse/src/parser/diagnostics.rs +++ b/compiler/rustc_parse/src/parser/diagnostics.rs @@ -45,6 +45,7 @@ use rustc_span::{BytePos, Span, SpanSnippetError, Symbol, DUMMY_SP}; use std::mem::take; use std::ops::{Deref, DerefMut}; use thin_vec::{thin_vec, ThinVec}; +use tracing::{debug, trace}; /// Creates a placeholder argument. pub(super) fn dummy_arg(ident: Ident, guar: ErrorGuaranteed) -> Param { |
