Skip to content

Commit

Permalink
fixed trace and debug levels on messages (#7141)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Harris <[email protected]>
  • Loading branch information
rolfyone authored May 13, 2023
1 parent c5ab2a8 commit 771dd88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public SafeFuture<Optional<BeaconState>> getStateToValidate(

if (isJustificationTooOld(targetBlockRoot, targetBlockSlot.get())) {
// we already justified a more recent slot on all compatible heads
LOG.trace(
LOG.debug(
"Ignored attestation gossip: attestationData target {}, source {}, head {} , slot {}",
attestationData.getTarget().getRoot(),
attestationData.getSource().getRoot(),
Expand All @@ -116,7 +116,7 @@ public SafeFuture<Optional<BeaconState>> getStateToValidate(
requiredCheckpoint =
new Checkpoint(spec.computeEpochAtSlot(earliestSlot), maybeAncestorRoot.get());
}
LOG.debug(
LOG.trace(
"Retrieving checkpoint state for attestationData target {}, source {}, head {} , slot {}; required checkpoint block root {}",
attestationData.getTarget().getRoot(),
attestationData.getSource().getRoot(),
Expand Down

0 comments on commit 771dd88

Please sign in to comment.