Skip to content

Commit

Permalink
Merge pull request #8435 from ThomasWaldmann/check-archive-timestamp
Browse files Browse the repository at this point in the history
check: also display archive timestamp
  • Loading branch information
ThomasWaldmann authored Sep 28, 2024
2 parents 069cbb4 + 2e37b1a commit 1700c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/borg/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1700c7a

Please sign in to comment.