Don't cache errors/exceptions when debug is enabled

This commit is contained in:
Robin Appelman 2013-02-15 03:09:33 +01:00
parent b169073169
commit bcabdd7dd5
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ class OC {
self::initPaths();
if (!defined('PHPUNIT_RUN')) {
if (!defined('PHPUNIT_RUN') and !(defined('DEBUG') and DEBUG)) {
register_shutdown_function(array('OC_Log', 'onShutdown'));
set_error_handler(array('OC_Log', 'onError'));
set_exception_handler(array('OC_Log', 'onException'));