Update projects

This commit is contained in:
Daniel Siepmann 2024-06-20 07:27:22 +02:00
parent 8c5127aa45
commit 1139c51abb
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
7 changed files with 9 additions and 1 deletions

View file

@ -16,8 +16,8 @@ require 'Caching.php';
require 'Debugging.php';
require 'Logging.php';
require 'Autologin.php';
require __DIR__ . '/client-specific/ClientSpecific.php';
require 'Extensions.php';
require __DIR__ . '/client-specific/ClientSpecific.php';
// Last, as we need client specific db adjustments
require 'Database.php';

View file

@ -9,6 +9,7 @@ $GLOBALS['TYPO3_CONF_VARS']['LOG']['das']['writerConfiguration'] = [
],
],
];
$GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'] = [
\TYPO3\CMS\Core\Log\LogLevel::WARNING => [
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
@ -16,12 +17,16 @@ $GLOBALS['TYPO3_CONF_VARS']['LOG']['writerConfiguration'] = [
],
],
];
$GLOBALS['TYPO3_CONF_VARS']['LOG']['processorConfiguration'] = [
\TYPO3\CMS\Core\Log\LogLevel::DEBUG => [
\Codappix\CdxLogging\UriProcessor::class => [
],
\Codappix\CdxLogging\LCTimeProcessor::class => [
],
],
];
$GLOBALS['TYPO3_CONF_VARS']['LOG']['TYPO3']['CMS']['deprecations']['writerConfiguration'] = [
\TYPO3\CMS\Core\Log\LogLevel::NOTICE => [
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [

Binary file not shown.

View file

@ -24,6 +24,9 @@ let
error_reporting = E_ALL
xdebug.mode = debug
xdebug.var_display_max_children = 2048
xdebug.var_display_max_depth = 5
xdebug.max_nesting_level = 400
'';
};