Print record number when files already archived

This commit is contained in:
XANTRONIX Industrial 2025-02-12 11:11:48 -05:00
parent 1a4dcec041
commit b986239026

View file

@ -36,7 +36,7 @@ for report in StormReport.each_from_csv_file(getattr(args, 'csv-report-details')
for key in bucket.each_matching_key(radars, report.timestamp_start, report.timestamp_end):
if archive.is_archived(key):
if not args.quiet:
print(f"Key {key} already archived")
print(f"Key {key} already archived ({i})")
else:
if not args.quiet:
if args.dry_run: