Console logs
Capture browser console output during recordings to debug client-side errors faster.
Last updated
Was this helpful?
Capture browser console output during recordings to debug client-side errors faster.
Console logs capture what your app wrote to the browser console during the session. This is the fastest way to debug client-side failures without asking customers to open DevTools.

Console logs are captured for widget-based recordings when enabled by an admin.
You typically need:
The Screendesk widget installed on your site
Console logging enabled in workspace settings
Console logs start capturing after you enable the feature. Older recordings won’t be backfilled.
Install the widget (if needed)
Console capture relies on the Screendesk script on your site.
Turn on console capture
Go to Settings → Console Logs.
Enable Enable Console Logs.

Verify on a test recording
Create a new test recording. Then confirm you see a Console tab on the recording.
Open a recording.
Click the Console tab.
Use search and level filters to narrow down noise.
Find the first real error
Start with Error entries. Ignore repeated follow-on errors at first.
Correlate with the video
Jump to the timestamp. Watch what the user did right before the error.
Escalate with the right payload
Include:
Error message
Stack trace
Timestamp
Recording link
Uncaught TypeError
Usually a frontend bug or missing data. Escalate with the stack trace.
CORS blocked
Usually a server header or environment mismatch. Pair this with the failing request in network logs.
Failed resource / 404
Usually a bad URL, missing asset, or wrong environment.
Deprecation warnings
These are rarely the direct cause. Track as tech debt unless they block the flow.
Use console logs when:
UI breaks and you suspect frontend code
You need stack traces and error context
Use network logs when:
Data doesn’t load
You need status codes, payloads, and responses
See Network Logs.
Console logs can include sensitive data (tokens, IDs, and internal state). Limit access.
Recommended practices:
Restrict access to technical roles.
Redact secrets before sharing outside your org.
Avoid copying full logs into public tickets.
Check these in order:
Console logging is enabled in Settings → Console Logs.
The Screendesk widget is installed on the page being recorded.
You’re testing with a new recording (no backfill).
Browser extensions aren’t blocking the widget.
This can be normal. Some apps don’t log anything unless there’s an error.
Try reproducing again, or add targeted logging in your app for the failing flow.
Filter to Error first. Then search for the API endpoint or feature keyword.
If this is persistent, reduce verbose debug logs in production builds.
Last updated
Was this helpful?
Was this helpful?
TypeError: Cannot read properties of undefined (reading 'user')Blocked by CORS policyFailed to load resource: the server responded with a status of 404