Add debug info and a warning for login issues related to #6831

This commit is contained in:
James Cole
2023-01-19 06:45:45 +01:00
parent 3d802b9c9e
commit 3ea8792c6e
43 changed files with 76 additions and 38 deletions

View File

@@ -168,7 +168,7 @@ class Handler extends ExceptionHandler
return response()->view('errors.FireflyException', ['exception' => $e, 'debug' => $isDebug], 500);
}
Log::debug('Error has no Firefly III treatment, parent will handle.');
Log::debug(sprintf('Error "%s" has no Firefly III treatment, parent will handle.', get_class($e)));
return parent::render($request, $e);
}