2013-04-16 15:41:31 +00:00
|
|
|
<?php
|
|
|
|
// TODO: make configurable
|
2013-04-17 12:05:52 +00:00
|
|
|
require_once "classes/logger.php";
|
|
|
|
require_once "classes/logger/sql.php";
|
2013-04-16 15:41:31 +00:00
|
|
|
|
|
|
|
function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
|
|
|
|
global $logger;
|
|
|
|
|
2013-04-17 13:00:24 +00:00
|
|
|
if (error_reporting() == 0 || !$errno) return false;
|
2013-04-16 21:26:55 +00:00
|
|
|
|
2013-04-16 15:41:31 +00:00
|
|
|
if (!$logger) $logger = new Logger_SQL();
|
|
|
|
|
2013-04-16 16:16:15 +00:00
|
|
|
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
|
2013-04-16 15:41:31 +00:00
|
|
|
|
|
|
|
if ($logger) {
|
|
|
|
return $logger->log_error($errno, $errstr, $file, $line, $context);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function ttrss_fatal_handler() {
|
|
|
|
global $logger;
|
|
|
|
|
|
|
|
$error = error_get_last();
|
|
|
|
|
|
|
|
if ($error !== NULL) {
|
2013-04-17 04:32:45 +00:00
|
|
|
$errno = $error["type"];
|
2013-04-16 15:41:31 +00:00
|
|
|
$file = $error["file"];
|
|
|
|
$line = $error["line"];
|
|
|
|
$errstr = $error["message"];
|
|
|
|
|
2013-04-17 13:00:24 +00:00
|
|
|
if (!$errno) return false;
|
|
|
|
|
2013-04-16 15:41:31 +00:00
|
|
|
$context = debug_backtrace();
|
|
|
|
|
2013-04-16 16:16:15 +00:00
|
|
|
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
|
2013-04-16 15:41:31 +00:00
|
|
|
|
|
|
|
if (!$logger) $logger = new Logger_SQL();
|
|
|
|
|
|
|
|
if ($logger) {
|
2013-04-17 12:05:52 +00:00
|
|
|
if ($logger->log_error($errno, $errstr, $file, $line, $context)) {
|
|
|
|
return true;
|
|
|
|
}
|
2013-04-16 15:41:31 +00:00
|
|
|
}
|
2013-04-17 12:05:52 +00:00
|
|
|
return false;
|
2013-04-16 15:41:31 +00:00
|
|
|
}
|
2013-04-17 12:05:52 +00:00
|
|
|
|
|
|
|
return false;
|
2013-04-16 15:41:31 +00:00
|
|
|
}
|
|
|
|
|
2013-04-17 17:19:00 +00:00
|
|
|
//register_shutdown_function('ttrss_fatal_handler');
|
|
|
|
//set_error_handler('ttrss_error_handler');
|
2013-04-16 15:41:31 +00:00
|
|
|
?>
|