mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
demote rustc_peek
traces look not user-facing
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
parent
eb67bf9368
commit
01803025d2
@ -289,7 +289,7 @@ impl<'tcx> RustcPeekAt<'tcx> for MaybeMutBorrowedLocals<'_, 'tcx> {
|
|||||||
flow_state: &BitSet<Local>,
|
flow_state: &BitSet<Local>,
|
||||||
call: PeekCall,
|
call: PeekCall,
|
||||||
) {
|
) {
|
||||||
warn!("peek_at: place={:?}", place);
|
info!("peek_at: place={:?}", place);
|
||||||
let local = if let Some(l) = place.as_local() {
|
let local = if let Some(l) = place.as_local() {
|
||||||
l
|
l
|
||||||
} else {
|
} else {
|
||||||
@ -311,7 +311,7 @@ impl<'tcx> RustcPeekAt<'tcx> for MaybeLiveLocals {
|
|||||||
flow_state: &BitSet<Local>,
|
flow_state: &BitSet<Local>,
|
||||||
call: PeekCall,
|
call: PeekCall,
|
||||||
) {
|
) {
|
||||||
warn!("peek_at: place={:?}", place);
|
info!("peek_at: place={:?}", place);
|
||||||
let local = if let Some(l) = place.as_local() {
|
let local = if let Some(l) = place.as_local() {
|
||||||
l
|
l
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user