summaryrefslogtreecommitdiffstats
path: root/lib/legacy
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-07-05 19:28:10 +0200
committerBart Visscher <bartv@thisnet.nl>2013-07-05 19:28:10 +0200
commit2db839c4d36a9c6157e2da6606f6fff1bea2eab0 (patch)
treed6c51a6c99bcc3b8da5a3c9d5d638b8b2c3391ed /lib/legacy
parent9c855f7b3d97b312095ba53a08fe45b71ca06c98 (diff)
downloadnextcloud-server-2db839c4d36a9c6157e2da6606f6fff1bea2eab0.tar.gz
nextcloud-server-2db839c4d36a9c6157e2da6606f6fff1bea2eab0.zip
Move error handlers from OC_Log to OC\Log\ErrorHandler
Diffstat (limited to 'lib/legacy')
-rw-r--r--lib/legacy/log.php27
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);
-
- }
}