CodeIgniter Forums
Debug - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9)
+--- Thread: Debug (/showthread.php?tid=70446)



Debug - amarnath - 04-10-2018

Dear team i am new to codeignator can any one help me how to debug application ?


RE: Debug - InsiteFX - 04-11-2018

SEE: The CodeIgniter User's Guide.

Profiling Your Application


RE: Debug - Paradinight - 04-11-2018

(04-10-2018, 03:50 AM)amarnath Wrote: Dear team i am new to codeignator can any one help me how to debug application ?

https://xdebug.org/

or the good old print_r


RE: Debug - mikahawkins - 10-15-2020

Hello amarnath,
You need to set your $config['log_threshold'] in file config.php since by default it's 0 (no logs)

0 = Disables logging, Error logging TURNED OFF
1 = Error Messages (including PHP errors)
2 = Debug Messages
3 = Informational Messages
4 = All Messages

Regards,
Mika Hawkins