1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-08 15:37:09 +00:00

Merge pull request #8435 from ThomasWaldmann/check-archive-timestamp

check: also display archive timestamp
This commit is contained in:
TW 2024-09-29 00:52:23 +02:00 committed by GitHub
commit 1700c7a4ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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