diff options
| author | bishtpawan <pawan.bisht@knoldus.com> | 2020-08-05 17:05:53 +0530 |
|---|---|---|
| committer | bishtpawan <pawan.bisht@knoldus.com> | 2020-08-06 16:56:56 +0530 |
| commit | fdfbd89946ca34d12eec658d111ce9a85cd23df0 (patch) | |
| tree | 0b70679788c0ecc7f0b01aba15a0ebfc76057392 /src/librustc_codegen_llvm/debuginfo | |
| parent | e18b56345f06c12be4dba9b5d76f306cdf0ab7f9 (diff) | |
| download | rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.tar.gz rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.zip | |
Incorporate tracing crate
Diffstat (limited to 'src/librustc_codegen_llvm/debuginfo')
| -rw-r--r-- | src/librustc_codegen_llvm/debuginfo/metadata.rs | 2 | ||||
| -rw-r--r-- | src/librustc_codegen_llvm/debuginfo/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_codegen_llvm/debuginfo/metadata.rs b/src/librustc_codegen_llvm/debuginfo/metadata.rs index 6ae7c7efaee..836e490c1d6 100644 --- a/src/librustc_codegen_llvm/debuginfo/metadata.rs +++ b/src/librustc_codegen_llvm/debuginfo/metadata.rs @@ -18,7 +18,6 @@ use crate::llvm::debuginfo::{ }; use crate::value::Value; -use log::debug; use rustc_ast::ast; use rustc_codegen_ssa::traits::*; use rustc_data_structures::const_cstr; @@ -43,6 +42,7 @@ use rustc_span::{self, SourceFile, SourceFileHash, Span}; use rustc_target::abi::{Abi, Align, HasDataLayout, Integer, LayoutOf, TagEncoding}; use rustc_target::abi::{Int, Pointer, F32, F64}; use rustc_target::abi::{Primitive, Size, VariantIdx, Variants}; +use tracing::debug; use libc::{c_longlong, c_uint}; use std::collections::hash_map::Entry; 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; |
