Skip to content

Commit

Permalink
Note and link to Logging API
Browse files Browse the repository at this point in the history
In the Performance section, not only the direct configuration of the core should be taken into account, but at least measures for optimizing logging via API should be pointed out.
  • Loading branch information
julianhofmann authored Jan 15, 2025
1 parent 7133b49 commit 6d443d5
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@ In :file:`config/system/settings.php` or :file:`config/system/additional.php`:
$GLOBALS['TYPO3_CONF_VARS'] = array_replace_recursive($GLOBALS['TYPO3_CONF_VARS'], $changeSettings);
.. note::
PHP warnings, among other things, are added to the TYPO3 log via
the [Writer configuration](https://docs.typo3.org/permalink/t3coreapi:logging-configuration-writer) of Logging API.
In production or from a performance perspective, you may not want this.
The default value is :php:`\Psr\Log\LogLevel::WARNING`.
Depending on requirements, the loglevel can be increased to :PHP:`\Psr\Log\LogLevel::ERROR`
(or higher).

In :file:`.htaccess`:

Expand Down

0 comments on commit 6d443d5

Please sign in to comment.