1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-30 03:30:17 +02:00

[ticket/12636] Add log.session_errors

PHPBB3-12636
This commit is contained in:
Rubén Calvo
2018-09-01 01:16:57 +02:00
committed by Marc Alexander
parent 4f402465bf
commit 303b823847
4 changed files with 16 additions and 1 deletions

View File

@@ -99,6 +99,12 @@ class core extends Extension
{
$container->setParameter('debug.' . $name, $value);
}
// Set the log options
foreach ($config['log'] as $name => $value)
{
$container->setParameter('log.' . $name, $value);
}
}
/**