diff --git a/app/system/backend/sync_router.py b/app/system/backend/sync_router.py index 2ca3a13..a1205b6 100644 --- a/app/system/backend/sync_router.py +++ b/app/system/backend/sync_router.py @@ -377,13 +377,13 @@ async def sync_from_economic() -> Dict[str, Any]: else: not_matched_count += 1 - logger.info(f"✅ e-conomic sync fuldført: {matched_count} matchet, {not_matched_count} ikke matchet af {len(economic_customers)} totalt") - nye matchet, {verified_count} verificeret, {not_matched_count} ikke matchet af {len(economic_customers)} totalt") + logger.info(f"✅ e-conomic sync fuldført: {matched_count} nye matchet, {verified_count} verificeret, {not_matched_count} ikke matchet af {len(economic_customers)} totalt") return { "status": "success", "matched": matched_count, - "verified": verifiot_matched_count, + "verified": verified_count, + "not_matched": not_matched_count, "total_processed": len(economic_customers) }