Loading...
Loading...
Salesforce debug log analysis and troubleshooting with 100-point scoring. TRIGGER when: user analyzes debug logs, hits governor limits, reads stack traces, or touches .log files from Salesforce orgs. DO NOT TRIGGER when: running Apex tests (use running-apex-tests), generating or fixing Apex code (use generating-apex), or Agentforce session tracing (use observing-agentforce).
npx skill4agent add forcedotcom/afv-library debugging-apex-logsdebugging-apex-logs.log| Issue | Primary signal | Default fix direction |
|---|---|---|
| SOQL in loop | repeating | query once, use maps / grouped collections |
| DML in loop | repeated | collect rows, bulk DML once |
| Non-selective query | high rows scanned / poor selectivity | add indexed filters, reduce scope |
| CPU pressure | CPU usage approaching sync limit | reduce algorithmic complexity, cache, async where valid |
| Heap pressure | heap usage approaching sync limit | stream with SOQL for-loops, reduce in-memory data |
| Null pointer / fatal error | | guard null assumptions, fix empty-query handling |
Issue: <summary>
Location: <class / line / transaction>
Root cause: <explanation>
Severity: Critical | Warning | Info
Fix: <specific action>
Verify: <test or rerun step>| Rule | Rationale |
|---|---|
| Always base fix recommendations on log evidence | Avoid speculative diagnosis — root cause must be traceable in the log |
| Report all six output fields for every issue found | Ensures actionable, complete findings for each problem |
| Classify every finding as Critical, Warning, or Info | Helps the user prioritize which issues to address first |
Delegate code generation to | This skill diagnoses; it does not rewrite Apex code |
Delegate test execution to | This skill does not run or repair test classes |
Never assume limits are safe without reading | Limits may be consumed by earlier operations not visible in the failure point |
| Pitfall | Resolution |
|---|---|
| Log truncated at 2 MB | Reduce debug levels (e.g., |
| Same issue appears as both SOQL and CPU problem | Fix SOQL-in-loop first — it typically drives the CPU spike as a secondary effect |
| No logs appear after trace flag is set | Verify the trace flag |
| Async context changes limit values | CPU limit is 60,000 ms async vs 10,000 ms sync — check transaction type before flagging limits |
| Stack trace points to framework line, not user code | Walk up the call stack past trigger handlers to find the originating user code |
| Need | Delegate to | Reason |
|---|---|---|
| Implement Apex fix | generating-apex | code change generation / review |
| Reproduce via tests | running-apex-tests | test execution and coverage loop |
| Deploy fix | deploying-metadata | deployment orchestration |
| Create debugging data | handling-sf-data | targeted seed / repro data |
| File | When to read |
|---|---|
| Start here — expanded step-by-step workflow for any debugging session |
| Quick lookup for SOQL in loop, DML in loop, CPU/heap pressure, null pointer patterns |
| SF CLI commands for retrieving, streaming, and managing debug logs |
| Full event type catalog, log levels, and governor limit reference values |
| Tool guide: Apex Log Analyzer, Developer Console, CLI grep patterns |
| Performance benchmarking techniques, benchmark data, and anti-patterns |
| 100-point scoring rubric for evaluating analysis quality |
| Copy-paste Anonymous Apex template for running performance benchmarks |
| Apex patterns for reducing CPU time and heap allocation |
| Before/after example for resolving DML-in-loop violations |
| Before/after example for resolving SOQL-in-loop violations |
| Patterns for guarding against null pointer exceptions |
| Score | Meaning |
|---|---|
| 90+ | Expert analysis with strong fix guidance |
| 80–89 | Good analysis with minor gaps |
| 70–79 | Acceptable but may miss secondary issues |
| 60–69 | Partial diagnosis only |
| < 60 | Incomplete analysis |