From 53552e97179d60421970631cd19eee00778d149e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 30 Jun 2020 14:41:46 +0200 Subject: [PATCH] Log checks --- app/Http/Controllers/SetupController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Http/Controllers/SetupController.php b/app/Http/Controllers/SetupController.php index 65c68089f09c..dece34c8b0c3 100644 --- a/app/Http/Controllers/SetupController.php +++ b/app/Http/Controllers/SetupController.php @@ -47,6 +47,8 @@ class SetupController extends Controller $check = SystemHealth::check(); if ($check['system_health'] === false) { + info($check); + return response('Oops, something went wrong. Check your logs.'); /** We should never reach this block, but jic. */ }