summaryrefslogtreecommitdiff
path: root/include/errorhandler.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-12-04 15:58:20 +0300
committerAndrew Dolgov <[email protected]>2015-12-04 15:58:20 +0300
commitb8619f8db01c10500814171631c83da3f770ea03 (patch)
tree5e571087b872f6ab24a7e4abde2aec08032a1200 /include/errorhandler.php
parent555afc2ea7a1117ca053b9af193c15ce62174bdb (diff)
store formatted backtrace to sql log
Diffstat (limited to 'include/errorhandler.php')
-rw-r--r--include/errorhandler.php35
1 files changed, 34 insertions, 1 deletions
diff --git a/include/errorhandler.php b/include/errorhandler.php
index 21cc9a94d..8189feafb 100644
--- a/include/errorhandler.php
+++ b/include/errorhandler.php
@@ -1,4 +1,36 @@
<?php
+function format_backtrace($trace) {
+ $rv = "";
+ $idx = 1;
+
+ if (is_array($trace)) {
+ foreach ($trace as $e) {
+ if (isset($e["file"]) && isset($e["line"])) {
+ $fmt_args = [];
+
+ if (is_array($e["args"])) {
+ foreach ($e["args"] as $a) {
+ if (!is_object($a)) {
+ array_push($fmt_args, $a);
+ } else {
+ array_push($fmt_args, "[" . get_class($a) . "]");
+ }
+ }
+ }
+
+ $filename = str_replace(dirname(__DIR__) . "/", "", $e["file"]);
+
+ $rv .= sprintf("%d. %s(%s): %s(%s)\n",
+ $idx, $filename, $e["line"], $e["function"], implode(", ", $fmt_args));
+
+ $idx++;
+ }
+ }
+ }
+
+ return $rv;
+}
+
function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
global $logger;
global $last_query;
@@ -8,6 +40,7 @@ function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
if ($last_query) $errstr .= " [Last query: $last_query]";
+ $context = format_backtrace(debug_backtrace());
if (class_exists("Logger"))
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
@@ -27,7 +60,7 @@ function ttrss_fatal_handler() {
if (!$errno) return false;
- $context = debug_backtrace();
+ $context = format_backtrace(debug_backtrace());
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);