read_runtime_logs
Fetch console output, uncaught exceptions, and unhandled rejections from a running PlayCanvas app to diagnose runtime bugs. Returns most recent entries with filtering by severity and keyword.
Instructions
Read console output (log/info/warn/error), uncaught exceptions and unhandled rejections from the RUNNING Launch instance — the first-line signal for runtime bugs. Requires launch_start first. Returns the most recent entries first, paginated (meta has total/count/hasMore/nextCursor). Defaults to warnings + errors; set level="all" (or debug/info/warn/error as a minimum severity) to widen, and keyword to filter. An empty result is success, not an error. When NOT to use: to read edit-time editor logs (this is the launched app only).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| level | No | Minimum severity to include (default: warn) | |
| limit | No | Max entries to return (default 100) | |
| offset | No | Entries to skip from the newest (use nextCursor) | |
| keyword | No | Only include entries whose text contains this (case-insensitive) |