Ok I got confused.
Inside application/config.php
it says in comments:
| If you have enabled error logging, you can set an error threshold to
| determine what gets logged. Threshold options are:
| You can enable error logging by setting a threshold over zero. The
| threshold determines what gets logged. Threshold options are:
|
| 0 = Disables logging, Error logging TURNED OFF
| 1 = Error Messages (including PHP errors)
| 2 = Debug Messages
| 3 = Informational Messages
| 4 = All Messages
|
| You can also pass an array with threshold levels to show individual error types
|
| array(2) = Debug Messages, without Error Messages
So if I want to get Error and Debug messages and not any Information messages, do I have to set the threshold
$config['log_threshold'] = 2;
or
$config['log_threshold'] = array(1, 2);
Could someone give me some clarification?