diff --git a/src/borg/archiver/prune_cmd.py b/src/borg/archiver/prune_cmd.py index 92cf81330..47b7f8605 100644 --- a/src/borg/archiver/prune_cmd.py +++ b/src/borg/archiver/prune_cmd.py @@ -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 = []