Write the type of exception to the log - really helpful for exceptions which hold no message
This commit is contained in:
parent
aef6ecdbf1
commit
d671f13f26
|
@ -141,6 +141,7 @@ class Util {
|
|||
*/
|
||||
public static function logException( $app, \Exception $ex, $level = \OCP\Util::FATAL ) {
|
||||
$exception = array(
|
||||
'Exception' => get_class($ex),
|
||||
'Message' => $ex->getMessage(),
|
||||
'Code' => $ex->getCode(),
|
||||
'Trace' => $ex->getTraceAsString(),
|
||||
|
|
Loading…
Reference in New Issue