1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 04:35:56 +00:00

errorhandler: check for Logger class existing

This commit is contained in:
Andrew Dolgov
2013-05-13 13:32:51 +04:00
parent 5e49db8dc2
commit 15d52d5152

View File

@@ -6,7 +6,8 @@ function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
if (class_exists("Logger"))
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
}
function ttrss_fatal_handler() {
@@ -26,7 +27,8 @@ function ttrss_fatal_handler() {
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
if (class_exists("Logger"))
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
}
return false;