Logs Viewer
Search, filter, and analyze agent logs in real-time with the Synthcore logs viewer.
Logs Viewer
The Logs tab provides real-time visibility into everything your agent is doing. Every action, warning, and error is captured and streamed to this view.
Viewing logs
- Navigate to your project in the dashboard.
- Click the Logs tab.
- Logs stream in real-time as your agent works.
The logs viewer automatically updates with new entries — no need to refresh the page.
Log entries
Each log entry contains:
- Timestamp — When the action occurred (HH:MM:SS format)
- Level — Info, Warning, or Error severity
- Source — The agent or System.
- Message — Description of what happened
- Details — Expandable JSON payload with additional context
Example entries
[14:23:01] [INFO] [Agent] Executing: create route handler for /api/users
[14:23:45] [INFO] [Agent] Running TypeScript type check
[14:24:12] [WARNING] [Agent] Build failed - retrying
[14:24:30] [INFO] [Agent] Committing changes to main
Filtering logs
Use the filter controls to narrow down logs:
By severity
Filter by log level:
- Info — Normal operations and progress updates
- Warning — Recoverable issues, retries, skipped tasks
- Error — Failures that require attention
By search
Use the search box to find specific log entries. Search matches against:
- Log messages
- File names
- Error descriptions
Exporting logs
To export logs for analysis:
- Set your desired filters (date range, agent, severity).
- Click Export above the log viewer.
- Choose format: CSV or JSON.
Exported logs include all fields for programmatic analysis.
Log retention
Logs are retained for 90 days on all plans. After the retention period, logs are automatically archived. Export important logs before they're deleted.
Common log patterns
Agent initialization
[09:00:00] [INFO] [System] Agent schedule triggered
[09:00:02] [INFO] [Agent] Loading project context
[09:00:05] [INFO] [Agent] Fetching recent commits from main
Task execution
[10:15:00] [INFO] [Agent] Task: implement user auth
[10:15:30] [INFO] [Agent] Creating lib/auth/login.ts
[10:16:45] [INFO] [Agent] Modifying app/api/auth/login/route.ts
Errors and warnings
[11:30:00] [WARNING] [Agent] Test suite failed: 2/15 tests failing
[11:30:15] [INFO] [Agent] Rerunning failed tests
[11:31:00] [INFO] [Agent] All tests passing
Troubleshooting with logs
If your agent isn't working as expected, logs often reveal the issue:
- Check for errors — Filter by Error level to see failures
- Trace the flow — Look at timestamps to understand what happened when
- Check agent boundaries — Warnings about file access restrictions indicate boundary issues
- Review build output — your agent's logs show build and test results
Need more help?
- Troubleshooting Guide — Common issues and solutions
- Contact Support — We're here to help