diff --git a/app/Console/Commands/CheckData.php b/app/Console/Commands/CheckData.php index c384a00b853f..30e90ec390be 100644 --- a/app/Console/Commands/CheckData.php +++ b/app/Console/Commands/CheckData.php @@ -107,7 +107,7 @@ class CheckData extends Command ->subject("Check-Data: " . strtoupper($this->isValid ? RESULT_SUCCESS : RESULT_FAILURE) . " [{$database}]"); }); } elseif (! $this->isValid) { - throw new Exception('Check data failed!!'); + throw new Exception("Check data failed!!\n" . $this->log); } }