We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#[macro_use] extern crate tracing
rustc_error_messages
1 parent bbe4efd commit 448fc75Copy full SHA for 448fc75
compiler/rustc_error_messages/src/lib.rs
@@ -5,9 +5,6 @@
5
#![feature(type_alias_impl_trait)]
6
#![allow(internal_features)]
7
8
-#[macro_use]
9
-extern crate tracing;
10
-
11
use fluent_bundle::FluentResource;
12
use fluent_syntax::parser::ParserError;
13
use icu_provider_adapters::fallback::{LocaleFallbackProvider, LocaleFallbacker};
@@ -20,6 +17,7 @@ use std::fmt;
20
17
use std::fs;
21
18
use std::io;
22
19
use std::path::{Path, PathBuf};
+use tracing::{instrument, trace};
23
24
#[cfg(not(parallel_compiler))]
25
use std::cell::LazyCell as Lazy;
0 commit comments