Decrease logging level in RemoveExpiredBackupsCommand
This commit is contained in:
parent
5c74aed8f6
commit
cdd2082b07
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue