Skip to content

Commit

Permalink
Backport fix #1062: Move uniqueness service logs to debug level (#1064)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrdvorak authored Sep 27, 2023
1 parent 30bfa16 commit 14619f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ public boolean persistUniqueValue(final UniqueValueType type, final String uniqu
*/
public void deleteExpiredUniqueValues() {
int expiredCount = uniqueValueRepository.deleteAllByTimestampExpiresBefore(Date.from(Instant.now()));
logger.info("Removed {} expired unique values", expiredCount);
logger.debug("Removed {} expired unique values", expiredCount);
}
}

0 comments on commit 14619f0

Please sign in to comment.