Task Logs
Console → Task Logs tracks asynchronous tasks (queued requests like image and video generation). Two tabs:
- Drawing logs — image-generation tasks
- Task logs — other async tasks (e.g. video generation)
Filters
| Filter | Notes |
|---|---|
| Time range | Start and end date/time |
| Task ID | Exact lookup |
Fields
| Column | Meaning |
|---|---|
| Submitted | Task creation time |
| Task ID | Use it to poll status via the API (e.g. GET /v1/videos/{task_id}) |
| Duration | Execution time |
| Status | Queued / running / succeeded / failed |
| Progress | Completion percentage |
| Details | Result link or failure reason |
With no tasks yet, the page shows "no logs found". Records appear after you submit an async API call (e.g. video generation).
Related APIs
- Video tasks: create with
POST /v1/videos, poll withGET /v1/videos/{task_id} - Synchronous calls (chat, embeddings, …) do not appear here — see Usage Logs