Skip to content

Commit 44c4034

Browse files
committed
Make step transition log verbose
1 parent c4c0de0 commit 44c4034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/consensus/tendermint/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ impl Worker {
637637

638638
#[allow(clippy::cognitive_complexity)]
639639
fn move_to_step(&mut self, state: TendermintState, is_restoring: bool) {
640-
ctrace!(ENGINE, "Transition to {:?} triggered.", state);
640+
ctrace!(ENGINE, "Transition to {:?} triggered from {:?}.", state, self.step);
641641
let prev_step = mem::replace(&mut self.step, state.clone());
642642
if !is_restoring {
643643
self.backup();

0 commit comments

Comments
 (0)