Replace from log to tracing in libsrustrustc_ast_lowering, librustc_ast_passes, librustc_ast_pretty

This commit is contained in:
bishtpawan 2020-08-02 12:21:39 +05:30
parent e18b56345f
commit 980edf5baa
8 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@ doctest = false
[dependencies]
rustc_arena = { path = "../librustc_arena" }
log = { package = "tracing", version = "0.1" }
tracing = "0.1"
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_hir = { path = "../librustc_hir" }
rustc_target = { path = "../librustc_target" }

View File

@ -17,7 +17,7 @@ use rustc_span::symbol::{kw, sym, Ident};
use rustc_span::Span;
use rustc_target::spec::abi;
use log::debug;
use tracing::debug;
use smallvec::{smallvec, SmallVec};
use std::collections::BTreeSet;

View File

@ -64,7 +64,7 @@ use rustc_span::source_map::{respan, DesugaringKind, ExpnData, ExpnKind};
use rustc_span::symbol::{kw, sym, Ident, Symbol};
use rustc_span::Span;
use log::{debug, trace};
use tracing::{debug, trace};
use smallvec::{smallvec, SmallVec};
use std::collections::BTreeMap;
use std::mem;

View File

@ -12,7 +12,7 @@ use rustc_session::lint::BuiltinLintDiagnostics;
use rustc_span::symbol::Ident;
use rustc_span::Span;
use log::debug;
use tracing::debug;
use smallvec::smallvec;
impl<'a, 'hir> LoweringContext<'a, 'hir> {

View File

@ -10,7 +10,7 @@ path = "lib.rs"
[dependencies]
itertools = "0.8"
log = { package = "tracing", version = "0.1" }
tracing = "0.1"
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_attr = { path = "../librustc_attr" }
rustc_data_structures = { path = "../librustc_data_structures" }

View File

@ -10,7 +10,7 @@ use rustc_span::source_map::Spanned;
use rustc_span::symbol::{sym, Symbol};
use rustc_span::Span;
use log::debug;
use tracing::debug;
macro_rules! gate_feature_fn {
($cx: expr, $has_feature: expr, $span: expr, $name: expr, $explain: expr) => {{

View File

@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false
[dependencies]
log = { package = "tracing", version = "0.1" }
tracing = "0.1"
rustc_span = { path = "../librustc_span" }
rustc_ast = { path = "../librustc_ast" }
rustc_target = { path = "../librustc_target" }

View File

@ -132,7 +132,7 @@
//! methods called `Printer::scan_*`, and the 'PRINT' process is the
//! method called `Printer::print`.
use log::debug;
use tracing::debug;
use std::borrow::Cow;
use std::collections::VecDeque;
use std::fmt;