Debug Logging
Add debug logs in this exact format so they can be auto-removed:
Format
code
// [DEBUG:PERFUX] <description>
console.log("[DEBUG:PERFUX]", <values>);
Examples
JavaScript/TypeScript:
js
// [DEBUG:PERFUX] Check user state
console.log("[DEBUG:PERFUX]", { user, isLoggedIn });
Python:
python
# [DEBUG:PERFUX] Check user state
print("[DEBUG:PERFUX]", user, is_logged_in)
Process
- •Identify the issue area
- •Add debug logs at key points (entry, exit, state changes)
- •Run the code and analyze output
- •Iterate: add more logs if needed
- •When done, run the removal script
Removal
Run from project root:
bash
.opencode/skill/debug/scripts/remove-debug-logs.ts
Or with bun:
bash
bun .opencode/skill/debug/scripts/remove-debug-logs.ts
All lines containing [DEBUG:PERFUX] are removed automatically.