Your Name commited on
Commit
730dd68
·
1 Parent(s): 26b48d4

Remove completion order numbers from initialization output

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -385,14 +385,14 @@ def run_parallel_initialization():
385
  try:
386
  result = future.result()
387
  if result:
388
- logging.info(f"✅ [{task_name}] Completed successfully ({completed_count}/{total_tasks})")
389
- print(f"✅ [{task_name}] Completed successfully ({completed_count}/{total_tasks})")
390
  else:
391
- logging.warning(f"⚠️ [{task_name}] Completed with warnings ({completed_count}/{total_tasks})")
392
- print(f"⚠️ [{task_name}] Completed with warnings ({completed_count}/{total_tasks})")
393
  except Exception as e:
394
- logging.error(f"❌ [{task_name}] Failed: {e} ({completed_count}/{total_tasks})")
395
- print(f"❌ [{task_name}] Failed: {e} ({completed_count}/{total_tasks})")
396
 
397
  # Verify all tasks completed
398
  if completed_count < total_tasks:
 
385
  try:
386
  result = future.result()
387
  if result:
388
+ logging.info(f"✅ [{task_name}] Completed successfully")
389
+ print(f"✅ [{task_name}] Completed successfully")
390
  else:
391
+ logging.warning(f"⚠️ [{task_name}] Completed with warnings")
392
+ print(f"⚠️ [{task_name}] Completed with warnings")
393
  except Exception as e:
394
+ logging.error(f"❌ [{task_name}] Failed: {e}")
395
+ print(f"❌ [{task_name}] Failed: {e}")
396
 
397
  # Verify all tasks completed
398
  if completed_count < total_tasks: