about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/debuginfo/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-08-17 16:40:10 +0000
committerbors <bors@rust-lang.org>2020-08-17 16:40:10 +0000
commit8d185cabbdcb1b30ea5f72b3f0b3e6442bc4548a (patch)
tree68d04e8270342b8ed943662d536baddb9463d825 /src/librustc_codegen_llvm/debuginfo/mod.rs
parente8df0b893235aa06c6362d1a8646296310f79f81 (diff)
parentbab15885c0ab1230186cc45290c6d6c224289f6b (diff)
downloadrust-8d185cabbdcb1b30ea5f72b3f0b3e6442bc4548a.tar.gz
rust-8d185cabbdcb1b30ea5f72b3f0b3e6442bc4548a.zip
Auto merge of #75187 - pawanbisht62:feature/incorporate-tracing, r=oli-obk
Incorporated Tracing Crate in some libraries

Issue #74747
Diffstat (limited to 'src/librustc_codegen_llvm/debuginfo/mod.rs')
-rw-r--r--src/librustc_codegen_llvm/debuginfo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/debuginfo/mod.rs b/src/librustc_codegen_llvm/debuginfo/mod.rs
index a01b8553721..b414426af8c 100644
--- a/src/librustc_codegen_llvm/debuginfo/mod.rs
+++ b/src/librustc_codegen_llvm/debuginfo/mod.rs
@@ -33,9 +33,9 @@ use rustc_span::{self, BytePos, Span};
 use rustc_target::abi::{LayoutOf, Primitive, Size};
 
 use libc::c_uint;
-use log::debug;
 use smallvec::SmallVec;
 use std::cell::RefCell;
+use tracing::debug;
 
 mod create_scope_map;
 pub mod gdb;