Skip to content

Commit

Permalink
chore: Change warn to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
satran004 committed Nov 18, 2023
1 parent 0c0b238 commit 360e147
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private void handleWitnessDatumRedeemer(long block, List<Witnesses> witnesses, b
final var hash = Datum.cborToHash(rawCbor);

if (!datum.getHash().equals(hash)) {
log.warn("Datum Hash Mismatch : {} - {} - {}", block, datum.getHash(), hash);
log.debug("Datum Hash Mismatch : {} - {} - {}", block, datum.getHash(), hash);
}

var updatedDatum = datum.toBuilder()
Expand Down Expand Up @@ -188,7 +188,7 @@ private void handleWitnessDatumRedeemer(long block, List<Witnesses> witnesses, b
final var hash = Datum.cborToHash(actualRedeemerData);

if (!redeemerData.getHash().equals(hash)) {
log.warn("Redeemer data hash mismatch : {} - {} - {}",
log.debug("Redeemer data hash mismatch : {} - {} - {}",
block, redeemerData.getHash(), hash);
}

Expand Down

0 comments on commit 360e147

Please sign in to comment.