Skip to content

Commit

Permalink
Fix #1062: Move uniqueness service logs to debug level (#1063)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrdvorak authored Sep 26, 2023
1 parent 7233852 commit 6b7faff
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 6b7faff

Please sign in to comment.