debug: Add logging to yield dashboard
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
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:
@ -213,6 +213,11 @@ 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],
|
||||
|
||||
Reference in New Issue
Block a user