improve logging

Reviewed-on: #49
This commit is contained in:
2025-03-16 20:40:43 +00:00
parent 23b050ef98
commit fe9e1197a7
7 changed files with 336 additions and 2 deletions

View File

@ -25,6 +25,6 @@ class Subcriber implements EventSubscriberInterface
public function logException(ExceptionEvent $event): void
{
$this->logger->warning($event->getThrowable()->getMessage());
$this->logger->error($event->getThrowable()->getMessage());
}
}