In CodeIgniter, which configuration setting determines the level of error logging?

  • $config['display_errors']
  • $config['error_log']
  • $config['error_reporting']
  • $config['log_threshold']
The log_threshold configuration setting in CodeIgniter determines the level of error logging. It accepts values from 0 to 4, where 0 means no logging and 4 means logging everything. Adjusting this setting allows you to control the amount of detail recorded in the logs.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *