Decrease logging level in RemoveExpiredBackupsCommand

This commit is contained in:
Ravi Khadiwala 2024-04-10 15:12:58 -05:00 committed by ravi-signal
parent 5c74aed8f6
commit cdd2082b07
1 changed files with 3 additions and 1 deletions

View File

@ -148,7 +148,9 @@ public class RemoveExpiredBackupsCommand extends EnvironmentCommand<WhisperServe
return mono
.doOnSuccess(ignored -> {
logger.info("incrementing metric for {}", HexFormat.of().formatHex(expiredBackup.hashedBackupId()));
logger.trace("Successfully expired {} for {}",
expiredBackup.expirationType(),
HexFormat.of().formatHex(expiredBackup.hashedBackupId()));
Metrics
.counter(EXPIRED_BACKUPS_COUNTER_NAME,
"tier", expiredBackup.expirationType().name(),