Skip to content

Commit e635e31

Browse files
authored
fix: committee mismatch trace in on_batch_msg to use structured fields
1 parent 0fb4353 commit e635e31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timeboost-sequencer/src/decrypt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ impl Worker {
760760
let round = batch.round.num();
761761
let committee_id = batch.round.committee();
762762
if committee_id != self.current {
763-
trace!(node = %self.label, %committee_id, "target committee: {} current: {}", round, self.current);
763+
trace!(node = %self.label, %committee_id, current=%self.current, round=%round, "not current committee");
764764
return Ok(());
765765
}
766766
self.key_stores

0 commit comments

Comments
 (0)