chore: Remove debug logging
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled

This commit is contained in:
2025-12-18 15:49:30 +01:00
parent 186563ffba
commit aeafb7257e

View File

@ -213,11 +213,6 @@ async def get_yield_dashboard(
currency="CHF",
)
# Debug logging
print(f"[YIELD] User {current_user.id} ({current_user.email}) - Found {len(domains)} yield domains")
for d in domains:
print(f"[YIELD] - {d.domain}: status={d.status}, dns_verified={d.dns_verified}")
return YieldDashboardResponse(
stats=stats,
domains=[_domain_to_response(d) for d in domains],