1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-03 05:35:58 +00:00

check: also display archive timestamp

This commit is contained in:
Thomas Waldmann 2024-09-28 22:58:44 +02:00
parent 156d33e69c
commit 2e37b1a15c
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -2055,7 +2055,7 @@ def valid_item(obj):
for i, info in enumerate(archive_infos):
pi.show(i)
archive_id, archive_id_hex = info.id, bin_to_hex(info.id)
logger.info(f"Analyzing archive {info.name} {archive_id_hex} ({i + 1}/{num_archives})")
logger.info(f"Analyzing archive {info.name} {info.ts} {archive_id_hex} ({i + 1}/{num_archives})")
if archive_id not in self.chunks:
logger.error(f"Archive metadata block {archive_id_hex} is missing!")
self.error_found = True