You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
will stop the framework processing, regardless of the error level set in
178
-
``error_reporting()``.
179
-
- In CI4, only errors with the error level set by ``error_reporting()`` in
180
-
**app/Config/Boot/{environment}.php** are logged (but depending on the
181
-
``Config\Logger::$threshold`` setting, they may not be written to the log file).
182
-
All errors that are not ignored by ``error_reporting()`` will stop the
183
-
framework processing.
173
+
- In CI3 the behavior was set in the **index.php** file:
174
+
- errors ignored by ``error_reporting()`` was not logged;
175
+
- other errors were logged (depending on the settings in ``log_threshold``, they may not have been written to the log file);
176
+
- errors with an error level of ``E_ERROR | E_PARSE | E_COMPILE_ERROR | E_CORE_ERROR | E_USER_ERROR`` stopped framework processing, regardless of the error level set in ``error_reporting()``;
177
+
- In CI4, the behavior is set in the **app/Config/Boot/{environment}.php** file:
178
+
- errors with the error level set by ``error_reporting()`` are logged (but depending on the
179
+
``Config\Logger::$threshold`` setting, they may not be written to the log file);
180
+
- all errors that are not ignored by ``error_reporting()`` will stop the framework processing;
0 commit comments