diff options
| author | Gurpreet Singh <gdhuper@gmail.com> | 2020-08-13 23:05:01 -0700 |
|---|---|---|
| committer | Gurpreet Singh <gdhuper@gmail.com> | 2020-08-15 13:03:11 -0700 |
| commit | d2753f91b5e09a91841fa729ef6b14d7ef249e8a (patch) | |
| tree | baac32eea45ab00677d9adb8e7eec899a9971def /src/librustc_parse/parser/path.rs | |
| parent | 5addb135edc2653b07670482a430aac9b655a86b (diff) | |
| download | rust-d2753f91b5e09a91841fa729ef6b14d7ef249e8a.tar.gz rust-d2753f91b5e09a91841fa729ef6b14d7ef249e8a.zip | |
replaced log with tracing
Diffstat (limited to 'src/librustc_parse/parser/path.rs')
| -rw-r--r-- | src/librustc_parse/parser/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_parse/parser/path.rs b/src/librustc_parse/parser/path.rs index d4e44c54b12..0f2b46f7e16 100644 --- a/src/librustc_parse/parser/path.rs +++ b/src/librustc_parse/parser/path.rs @@ -10,8 +10,8 @@ use rustc_errors::{pluralize, Applicability, PResult}; use rustc_span::source_map::{BytePos, Span}; use rustc_span::symbol::{kw, sym, Ident}; -use log::debug; use std::mem; +use tracing::debug; /// Specifies how to parse a path. #[derive(Copy, Clone, PartialEq)] |
