Back to Mastra

Reference: Logs API | Client SDK

docs/src/content/en/reference/client-js/logs.mdx

2025-12-18470 B
Original Source

Logs API

The Logs API provides methods to access and query system logs and debugging information in Mastra.

Getting logs

Retrieve system logs with optional filtering:

typescript
const logs = await mastraClient.listLogs({
  transportId: 'transport-1',
})

Getting logs for a specific run

Retrieve logs for a specific execution run:

typescript
const runLogs = await mastraClient.getLogForRun({
  runId: 'run-1',
  transportId: 'transport-1',
})