Skip to content

Commit e096a50

Browse files
committed
Make step transition log verbose
1 parent 19c93d5 commit e096a50

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
@@ -635,7 +635,7 @@ impl Worker {
635635

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

0 commit comments

Comments
 (0)