aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authordedeibel2018-12-09 16:05:31 +0100
committerdedeibel2018-12-19 22:06:24 +0100
commit5adc197e3cdff57955ffc187e561eef77f6b1c06 (patch)
tree51af7d00d89fdfadd09120c02279666670672834 /index.php
parent4b3740b7550c7fb2056342734f03cfdc13d5e6ea (diff)
Log uncaught Exceptions to stderr
Diffstat (limited to 'index.php')
-rw-r--r--index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/index.php b/index.php
index 098cfa4..95dac53 100644
--- a/index.php
+++ b/index.php
@@ -341,4 +341,5 @@ catch(Exception $e)
{
ob_clean();
require('view/500.php');
+ error_log("Caught: $e");
}