cakephp3 disable deprecation warnings by setting
cakephp3 You can disable deprecation warnings by setting Error.errorLevel to E_ALL & ~E_USER_DEPRECATED in your config/app.php
1 2 3 4 5 6 7 |
'Error' => [ 'errorLevel' => E_ALL & ~E_USER_DEPRECATED,//左のように変更 'exceptionRenderer' => 'Cake\Error\ExceptionRenderer', 'skipLog' => [], 'log' => true, 'trace' => true, ], |