✅ Xdebug Status: Active (v)
📊 Debug Toolbar: Check the bottom of this page for the CodeIgniter debug toolbar with database queries, execution time, and more!
🔍 Debugging Features Available
- Breakpoint Debugging: Set breakpoints in VS Code and press F5
- Debug Functions: Use
debug_dump(), debug_log(), dd()
- Debug Toolbar: See execution details at the bottom of this page
- Log Files: Check
writable/logs/ for debug messages
🛠 Quick Debug Test
// Add this to any controller method:
debug_dump($variable, 'Variable Name');
debug_log($_POST, 'Form Data');
debug_timer('operation');
// ... your code ...
debug_timer('operation'); // Shows elapsed time