Skip to content

Commit

Permalink
log publish as info
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed May 25, 2024
1 parent 17ffc62 commit ec56636
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions choam/src/main/java/com/salesforce/apollo/choam/CHOAM.java
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,9 @@ public Block produce(ULong height, Digest prev, Executions executions, HashedBlo

@Override
public void publish(Digest hash, CertifiedBlock cb) {
log.trace("Publishing: {} hash: {} height: {} certifications: {} on: {}", cb.getBlock().getBodyCase(),
hash, ULong.valueOf(cb.getBlock().getHeader().getHeight()), cb.getCertificationsCount(),
params.member().getId());
log.info("Publishing: {} hash: {} height: {} certifications: {} on: {}", cb.getBlock().getBodyCase(),
hash, ULong.valueOf(cb.getBlock().getHeader().getHeight()), cb.getCertificationsCount(),
params.member().getId());
combine.publish(cb, true);
}

Expand Down

0 comments on commit ec56636

Please sign in to comment.