Troubleshooting Methodology
Dev Error DB pages are written around a simple debugging workflow: match the exact error signature, identify the technology and execution context, collect safe diagnostics, test the smallest likely fix, and document the result.
What to collect before debugging
- The exact error text and stack trace with secrets redacted.
- The command, API request, CI job, editor action, or deployment step that failed.
- Tool, SDK, runtime, operating system, and provider versions when available.
- Whether the failure reproduces locally, in CI, in staging, or only in production.
Safe fix workflow
- Reproduce the smallest failing action.
- Compare the page evidence with official documentation or your local logs.
- Change one variable at a time.
- Verify the same action succeeds before expanding the change.
- Keep a rollback path for production or shared environments.
When to pause
Pause before applying a fix if it deletes data, rotates credentials, changes billing or quotas, relaxes security controls, or touches production infrastructure without a tested rollback path.