Skip to content

Commit

Permalink
trace instead of info
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Apr 28, 2024
1 parent 5fda6e5 commit 4036cac
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 @@ -542,9 +542,9 @@ public Block produce(ULong height, Digest prev, Executions executions, HashedBlo

@Override
public void publish(Digest hash, CertifiedBlock cb) {
log.info("Publishing: {} hash: {} height: {} certifications: {} on: {}", cb.getBlock().getBodyCase(),
hash, ULong.valueOf(cb.getBlock().getHeader().getHeight()), cb.getCertificationsCount(),
params.member().getId());
log.trace("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 4036cac

Please sign in to comment.