Skip to content

Commit

Permalink
check: also display archive timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Sep 28, 2024
1 parent 156d33e commit 2e37b1a
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 2e37b1a

Please sign in to comment.