Log maxmet first entry structure to identify vo2max field name
Build and push images / validate (push) Successful in 2s
Build and push images / build-backend (push) Successful in 6s
Build and push images / build-worker (push) Successful in 4s
Build and push images / build-frontend (push) Successful in 5s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 23:13:43 +01:00
parent 546fdd96b5
commit 093aa67e58
@@ -342,6 +342,9 @@ def sync_wellness(garmin, user_id: int, since: Optional[datetime], db,
len(mm_raw) if isinstance(mm_raw, (list, dict)) else "n/a")
if isinstance(mm_raw, list):
mm_entries = mm_raw
if mm_entries and isinstance(mm_entries[0], dict):
logger.info("maxmet first entry keys: %s", list(mm_entries[0].keys()))
logger.info("maxmet first entry: %s", mm_entries[0])
except Exception as exc:
logger.info("maxmet history fetch failed: %s", exc)