diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-07-15 09:23:37 -0700 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-07-15 09:23:37 -0700 |
commit | 1a2db491af49733486134388f1d21117e200cfa4 (patch) | |
tree | 5bfc4fdb2fea969c8128a090002c835747820fe1 /lib/legacy | |
parent | f2639d62692b9cd25adff137fa65954fc3b5a794 (diff) | |
parent | 4a6803ef9d4d1527f01fe687f8fa701efe5386dd (diff) | |
download | nextcloud-server-1a2db491af49733486134388f1d21117e200cfa4.tar.gz nextcloud-server-1a2db491af49733486134388f1d21117e200cfa4.zip |
Merge pull request #3962 from owncloud/move-error-handlers
Move error handlers from OC_Log to OC\Log\ErrorHandler
Diffstat (limited to 'lib/legacy')
-rw-r--r-- | lib/legacy/log.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/legacy/log.php b/lib/legacy/log.php index 7802ead2412..027cb89e97c 100644 --- a/lib/legacy/log.php +++ b/lib/legacy/log.php @@ -47,31 +47,4 @@ class OC_Log { call_user_func($func, $message, $context); } } - - //Fatal errors handler - public static function onShutdown() { - $error = error_get_last(); - if($error) { - //ob_end_clean(); - self::write('PHP', $error['message'] . ' at ' . $error['file'] . '#' . $error['line'], self::FATAL); - } else { - return true; - } - } - - // Uncaught exception handler - public static function onException($exception) { - self::write('PHP', - $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), - self::FATAL); - } - - //Recoverable errors handler - public static function onError($number, $message, $file, $line) { - if (error_reporting() === 0) { - return; - } - self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); - - } } |