소스 검색

Merge branch 'develop' of https://forge.laclic.fr/Laclic/SovBundle into develop

feature/symfony6.1
Fabien Normand 2 년 전
부모
커밋
81ccad2039
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. +9
    -3
      Controller/ErrorController.php

+ 9
- 3
Controller/ErrorController.php 파일 보기

@@ -2,6 +2,7 @@

namespace Lc\SovBundle\Controller;

use Symfony\Component\ErrorHandler\Exception\FlattenException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Mailer\MailerInterface;
use Throwable;
@@ -11,13 +12,18 @@ use Symfony\Component\Mime\Email;
class ErrorController extends AbstractController
{

public function show($exception, DebugLoggerInterface $logger = null, MailerInterface $mailer)
{
public function show(
Request $request,
FlattenException $exception,
DebugLoggerInterface $logger = null,
MailerInterface $mailer
) {
//Si != de 404 on envoit un mail de debug
if ($exception->getStatusCode() != 404) {
$mailDebug = $this->getParameter('app.mail_debug');
if ($mailDebug) {
$message = "Code : " . $exception->getStatusCode() . "<br>";
$message = "URL : " . $request->getUri() . "<br>";
$message .= "Code : " . $exception->getStatusCode() . "<br>";
$message .= "Message : " . $exception->getMessage() . "<br>";
$message .= "File : " . $exception->getFile() . "<br>";
$message .= "Line : " . $exception->getLine() . "<br><br>";

Loading…
취소
저장