18 lines
459 B
Markdown
18 lines
459 B
Markdown
# Debugging Workflow
|
|
|
|
1. Capture the symptom, error, or incorrect behavior.
|
|
2. Inspect the relevant path and recent changes.
|
|
3. Form the most likely hypotheses.
|
|
4. Narrow the cause using the smallest practical evidence checks.
|
|
5. Propose or implement the minimal safe fix.
|
|
6. Review for:
|
|
- hidden assumptions
|
|
- unhandled states
|
|
- logging or observability gaps
|
|
- regression risk
|
|
7. Summarize:
|
|
- symptom
|
|
- cause
|
|
- fix
|
|
- prevention ideas
|