diff --git a/node/src/chain/acceptor.rs b/node/src/chain/acceptor.rs index 558d919d0..88f59a2d0 100644 --- a/node/src/chain/acceptor.rs +++ b/node/src/chain/acceptor.rs @@ -505,7 +505,12 @@ impl Acceptor { ); for slashed in Slash::from_block(blk)? { - info!("Slashed {}", slashed.provisioner.to_base58()); + info!( + "Slashed {} at block {} (type: {:?})", + slashed.provisioner.to_base58(), + blk.header().height, + slashed.r#type + ); slashed_count += 1; }