read_runtime_logs
Read console output, uncaught exceptions, and unhandled rejections from a running PlayCanvas Launch instance to debug runtime errors. Filter by severity or keyword; requires launch_start.
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). Exceptions and rejections are serialised as "name: message" plus their stack, so a thrown Error is readable without opening devtools. 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) |