Browse Source

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

check: also display archive timestamp
TW 8 tháng trước cách đây
mục cha
commit
1700c7a4ea
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/borg/archive.py

+ 1 - 1
src/borg/archive.py

@@ -2055,7 +2055,7 @@ class ArchiveChecker:
             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