Skip to content
Snippets Groups Projects
Commit 6cf679e0 authored by Jose Quinteiro's avatar Jose Quinteiro
Browse files

Set error_logging correctly. Fixes #19847


Don't override the error_logging setting from php.ini unless we're
debugging.

Signed-off-by: default avatarJose Quinteiro <github@quinteiro.org>
parent 1f7cb027
No related branches found
No related tags found
Loading
......@@ -602,8 +602,12 @@ class OC {
\OC::$server->getEventLogger()->log('autoloader', 'Autoloader', $loaderStart, $loaderEnd);
\OC::$server->getEventLogger()->start('boot', 'Initialize');
// Override php.ini and log everything if we're troubleshooting
if (self::$config->getValue('loglevel') === ILogger::DEBUG) {
error_reporting(E_ALL | E_DEPRECATED);
}
// Don't display errors and log them
error_reporting(E_ALL | E_STRICT);
@ini_set('display_errors', '0');
@ini_set('log_errors', '1');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment