debug: log show relationships
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s

This commit is contained in:
fullsizemalt 2025-12-31 18:34:39 -08:00
parent 0c80904661
commit 8d55b1303b

View file

@ -109,6 +109,13 @@ def read_shows(
shows = session.exec(query.offset(offset).limit(limit)).all()
if shows:
print(f"DEBUG: Loaded {len(shows)} shows")
print(f"DEBUG: First show ID: {shows[0].id}")
print(f"DEBUG: First show Venue: {shows[0].venue}")
print(f"DEBUG: First show Vertical: {shows[0].vertical}")
return PaginatedResponse(
data=shows,
meta=PaginationMeta(total=total, limit=limit, offset=offset)