Skip to content
Snippets Groups Projects
Commit 91965852 authored by catch's avatar catch
Browse files

Issue #2646786 by dawehner: Add a backtrace for logged exceptions

parent 04737222
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,7 @@ public static function decodeException($exception) { ...@@ -76,6 +76,7 @@ public static function decodeException($exception) {
'%line' => $caller['line'], '%line' => $caller['line'],
'severity_level' => static::ERROR, 'severity_level' => static::ERROR,
'backtrace' => $backtrace, 'backtrace' => $backtrace,
'backtrace_string' => $exception->getTraceAsString(),
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment