cleanup: remove debug logging from assistant
All checks were successful
Security Checks / dependency-audit (push) Successful in 13s
Security Checks / secret-scanning (push) Successful in 4s
Security Checks / dockerfile-lint (push) Successful in 3s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yusuf Suleman
2026-04-03 09:26:45 -05:00
parent b9d80fb6b6
commit 04fbdc9a9b

View File

@@ -735,8 +735,7 @@ def handle_fitness_assistant(handler, body, user):
current_drafts.append(clamp_draft({"entry_date": requested_date, **item}))
# ── Apply action ──
# ── Apply action ──
# (debug logging removed)
if action == "apply":
if has_complete_drafts(current_drafts):
results = [apply_draft(user_id, item, i) for i, item in enumerate(current_drafts)]
failed = next((r for r in results if not r["ok"]), None)