get_logs
Get console output (stdout + stderr) for an app. Useful for debugging runtime errors.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | App ID (UUID) or subdomain | |
| head | No | Return only the first N lines of the fetched logs | |
| tail | No | Number of recent log lines to return (default: 100, max: 1000) | |
| since | No | Only return logs after this timestamp (ISO 8601 format) | |
| end_line | No | End at this line number (1-indexed, inclusive). Use with start_line for a range. | |
| start_line | No | Start from this line number (1-indexed). Use with end_line for a range. |