Stress-Test My App for Scale & Failure
It works with you clicking around. Will it survive 1,000 real users and a bad day?
Good logs save you at 2am. Bad ones leak data and tell you nothing. Get this right.
Audit how my app handles errors and logging. I want it to fail gracefully, help me debug, and never leak sensitive info. App & stack: [DETAILS] I'll paste examples of how I currently handle errors and what I log. Review: does the app fail gracefully (friendly message) or dump stack traces and internal details to users? Am I leaking sensitive data into logs or error responses (passwords, tokens, PII, full requests)? Are errors actually caught and handled, or do some crash the request/app? Am I logging enough of the right things to debug a real problem, with enough context (without logging too much)? Would I find out quickly if errors spike? For each issue, give me the fix and a good pattern to follow for my stack. End with the one change that most improves my ability to catch and fix problems fast.
Replace these placeholders with your own values: