List console errors
get_session_console_errorsRetrieve console error messages from a recorded session, ordered by time. Each error includes id, timestamp, level, message, and stack trace, with pagination support for long sessions.
Instructions
List console error messages recorded in a session, oldest first. Each row has a numeric id to pass to get_user_action_before_error. Returns JSON rows ({ id, ts, level, message, stack }); message clipped to 500 and stack to 800 chars. For error counts at a glance, use get_session_summary first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | Session id from list_recent_sessions. | |
| since | No | Only return errors with ts >= this epoch-ms timestamp (to page forward through a long session). Omit to start from the beginning. | |
| limit | No | Maximum errors to return (1-200, oldest first; default 50). |