diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-08-04 09:27:03 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-04 09:27:03 +0900 |
| commit | c2bc733d99b99a830239c553759ce7b59ffbc507 (patch) | |
| tree | 7ff366fdca5dedfb479c49e6151f8d9ba284059c /src | |
| parent | 485bfa7a7581e05f08a42bef3878a392c461ddc5 (diff) | |
| parent | e97e6fbe343d0afac795e6c13201ce31047dc219 (diff) | |
| download | rust-c2bc733d99b99a830239c553759ce7b59ffbc507.tar.gz rust-c2bc733d99b99a830239c553759ce7b59ffbc507.zip | |
Rollup merge of #75081 - jyn514:fix-logging, r=Mark-Simulacrum
Fix logging for rustdoc https://github.com/rust-lang/rust/pull/74726#issuecomment-667765557
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 002c5f96710..4f08452767a 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -43,7 +43,7 @@ extern crate rustc_trait_selection; extern crate rustc_typeck; extern crate test as testing; #[macro_use] -extern crate log; +extern crate tracing as log; use std::default::Default; use std::env; |
