diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 3c3538bd67..01c50a0749 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -90,7 +90,7 @@ class Handler extends ExceptionHandler Log::debug('Now in Handler::render()'); if ($e instanceof LaravelValidationException && $expectsJson) { // ignore it: controller will handle it. - Log::debug('Return to parent to handle LaravelValidationException'); + Log::debug(sprintf('Return to parent to handle LaravelValidationException(%d)', $e->status)); return parent::render($request, $e); } if ($e instanceof NotFoundHttpException && $expectsJson) {