File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
user_guide_src/source/changelogs Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
|
10
10
| If you set 'display_errors' to '1', CI4's detailed error report will show.
11
11
*/
12
- error_reporting (- 1 );
13
- // If you want to suppress some types of errors.
12
+ error_reporting (E_ALL & ~ E_DEPRECATED );
13
+ // If you want to suppress more types of errors.
14
14
// error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
15
15
ini_set ('display_errors ' , '0 ' );
16
16
Original file line number Diff line number Diff line change @@ -314,8 +314,8 @@ Changes
314
314
- ``Config\Feature::$multipleFilters `` has been removed, because now
315
315
:ref: `multiple-filters ` are always enabled.
316
316
- The default error level in the production environment
317
- (**app/Config/Boot/production.php **) has been changed to use the same error
318
- level in the development environment .
317
+ (**app/Config/Boot/production.php **) has been changed to `` E_ALL & ~E_DEPRECATED ``
318
+ to match the default ** php.ini ** for production .
319
319
320
320
Deprecations
321
321
************
You can’t perform that action at this time.
0 commit comments