mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-28 04:03:21 -04:00
prune: show total vs matching archives in output, fixes #9262
This commit is contained in:
parent
7b60edd0c0
commit
1cb185a8e6
1 changed files with 2 additions and 1 deletions
|
|
@ -170,7 +170,8 @@ class PruneMixIn:
|
|||
|
||||
to_delete = set(archives) - set(keep)
|
||||
if not args.json:
|
||||
logger.info("Found %d archives.", len(archives))
|
||||
logger.info("Repository contains %d archives.", manifest.archives.count())
|
||||
logger.info("Applying rules to the matching %d archives...", len(archives))
|
||||
logger.info("Keeping %d archives, pruning %d archives.", len(keep), len(to_delete))
|
||||
if args.json:
|
||||
output_data = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue