Merge pull request #15692 from owncloud/log-exception-type-master

Write the type of exception to the log - really helpful for exceptions w...
This commit is contained in:
Joas Schilling 2015-04-18 09:28:48 +02:00
commit 8cb0d97b10
1 changed files with 1 additions and 0 deletions

View File

@ -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(),