From b1191bd83c8227cc4ae7d574a48b259385b3ebed Mon Sep 17 00:00:00 2001 From: Florian Schlichting Date: Fri, 28 Apr 2017 17:43:13 +0200 Subject: [PATCH] caldav: leave some info about the exception we are catching --- htdocs/caldav.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/caldav.php b/htdocs/caldav.php index 8b83e9d7..5c4bdb45 100644 --- a/htdocs/caldav.php +++ b/htdocs/caldav.php @@ -154,7 +154,7 @@ try { } } catch (Exception $e) { - trace_bug('DAViCal Fatal Error'); + trace_bug( 'DAViCal Fatal Error: ['.$e->getCode().'] '.$e->getmessage().' at '.$e->getFile().':'.$e->getLine() ); $request->DoResponse( 500, translate('DAViCal Fatal Error') ); }