-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
julesFor Jules AI to work onFor Jules AI to work on
Description
Audit: Error Handling & Logging
Review error handling patterns and logging practices.
Error Handling
-
Exception Handling
- Are exceptions caught appropriately?
- Generic catches hiding bugs?
- Error information leakage?
-
Error Recovery
- Graceful degradation?
- Retry logic with backoff?
- Circuit breaker patterns?
-
User-Facing Errors
- Helpful without exposing internals?
- Consistent error format?
- Localization support?
-
API Errors
- Standard error response format?
- Appropriate HTTP status codes?
- Error codes for clients?
Logging
-
What is Logged
- Security events (auth, access)?
- Errors with context?
- Performance metrics?
-
What Should NOT be Logged
- Passwords/tokens
- PII without consent
- Full credit card numbers
-
Log Quality
- Structured logging (JSON)?
- Correlation IDs?
- Log levels used correctly?
-
Log Security
- Injection-safe?
- Tamper-evident?
- Retention policy?
Output
Save to AUDIT-ERROR-HANDLING.md
Metadata
Metadata
Assignees
Labels
julesFor Jules AI to work onFor Jules AI to work on