about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/debuginfo/mod.rs
diff options
context:
space:
mode:
authorbishtpawan <pawan.bisht@knoldus.com>2020-08-05 17:05:53 +0530
committerbishtpawan <pawan.bisht@knoldus.com>2020-08-06 16:56:56 +0530
commitfdfbd89946ca34d12eec658d111ce9a85cd23df0 (patch)
tree0b70679788c0ecc7f0b01aba15a0ebfc76057392 /src/librustc_codegen_llvm/debuginfo/mod.rs
parente18b56345f06c12be4dba9b5d76f306cdf0ab7f9 (diff)
downloadrust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.tar.gz
rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.zip
Incorporate tracing crate
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;