# Jobs.QueryLogsPage

```go
func (jobClient) QueryLogsPage(
    ctx context.Context,
    jobID uuid.UUID,
    options ...job.TelemetryQueryOption,
) (*workflows.LogPage, error)
```

Query a single page of log records emitted while running a job.

## Parameters

**jobID**

`uuid.UUID`

required: true

The ID of the job to query logs for.

**options**

`[]job.TelemetryQueryOption`

Options for querying logs.

## Options

**job.WithCursor(cursor \*job.Cursor)**

Start the query after the cursor returned by a previous page.

**job.WithLimit(limit int64)**

Limit the number of log records returned in this page.

**job.WithSortDirection(direction job.SortDirection)**

Sort logs by time. Use `job.Ascending` for oldest first or `job.Descending` for newest first.

## Returns

A `LogPage` with log records and an optional `NextCursor` for the next page.

```go title="Go"
page, err := client.Jobs.QueryLogsPage(ctx,
    jobID,
    job.WithLimit(100),
    job.WithSortDirection(job.Ascending),
)
```
