|
|
|
@ -48,6 +48,11 @@ class OC_Log { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 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){ |
|
|
|
|
self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); |
|
|
|
|