Skip to content

Commit

Permalink
Merge branch 'eichhorl/fix-log-placeholders' into 'master'
Browse files Browse the repository at this point in the history
fix(consensus): Fix parameter order in CUP maker error log

 

See merge request dfinity-lab/public/ic!17379
  • Loading branch information
eichhorl committed Jan 29, 2024
2 parents 1b55b80 + 6fed0c3 commit 85f0c21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rs/consensus/src/consensus/catchup_package_maker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ impl CatchUpPackageMaker {
error!(
self.log,
"Cannot make ECDSA CUP at height {}: `get_state_hash_at` \
succeeded but `get_state_at` failed with {:?}. Will retry",
err,
succeeded but `get_state_at` failed with {}. Will retry",
height,
err,
)
})
.ok()?;
Expand Down

0 comments on commit 85f0c21

Please sign in to comment.