log_threshold or ENVIRONMENT |
What is the difference between index.php ENVIRONMENT and $config['log_threshold'] = 2; in config.php?
Is it best practice to put this in config.php? PHP Code: /*
You'll rarely need the logging feature turned on, even in your development environment. There are better ways to log. ChromePhp or FirePhp are great for console logging from the server. FirePhp currently only works with older versions of Firefox, but it's pretty easy to install multiple versions of Firefox. I use Firefox v48.
(10-08-2017, 05:52 PM)meow Wrote: What is the difference between index.php ENVIRONMENT and $config['log_threshold'] = 2; in config.php? The logic checking ENVIRONMENT is used to set PHP error reporting while $config['log_threshold'] is used to determine what amount of detail gets added to the application logs that CI generates. CI does catch and log many PHP related warnings and errors - but not all of them. In particular, third-party software (i.e. discussion forum) running on a site might be totally unaware of the CI framework. In short there are two separate but somewhat overlapping systems for reporting info, warnings and errors. |
Welcome Guest, Not a member yet? Register Sign In |