List all processed LAZ files with status in pipeline summary
Show each file with ✓/✗ before the success/fail counts, so the user can see at a glance which files succeeded and which failed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@ -428,12 +428,13 @@ class LidarArchaeoPipeline:
|
||||
logger.info("=" * 60)
|
||||
logger.info("RÉSUMÉ")
|
||||
logger.info("=" * 60)
|
||||
for name, ok in results.items():
|
||||
status = "✓" if ok else "✗"
|
||||
logger.info(f" {status} {name}")
|
||||
logger.info("-" * 60)
|
||||
logger.info(f" Succès : {success_count}/{len(results)}")
|
||||
if fail_count:
|
||||
logger.info(f" Échecs : {fail_count}/{len(results)}")
|
||||
for name, ok in results.items():
|
||||
if not ok:
|
||||
logger.info(f" ✗ {name}")
|
||||
logger.info(f" Durée totale : {t_pipeline_total:.1f}s ({t_pipeline_total/60:.1f}min)")
|
||||
|
||||
logger.info(f"\nRésultats dans: {self.output_dir}")
|
||||
|
||||
Reference in New Issue
Block a user