Skip to content

Commit 928c787

Browse files
committed
make them structured while i'm here
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
1 parent 0180302 commit 928c787

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_mir_dataflow/src/rustc_peek.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ impl<'tcx> RustcPeekAt<'tcx> for MaybeMutBorrowedLocals<'_, 'tcx> {
289289
flow_state: &BitSet<Local>,
290290
call: PeekCall,
291291
) {
292-
info!("peek_at: place={:?}", place);
292+
info!(?place, "peek_at",);
293293
let local = if let Some(l) = place.as_local() {
294294
l
295295
} else {
@@ -311,7 +311,7 @@ impl<'tcx> RustcPeekAt<'tcx> for MaybeLiveLocals {
311311
flow_state: &BitSet<Local>,
312312
call: PeekCall,
313313
) {
314-
info!("peek_at: place={:?}", place);
314+
info!(?place, "peek_at");
315315
let local = if let Some(l) = place.as_local() {
316316
l
317317
} else {

0 commit comments

Comments
 (0)