exception |
Doctrine\DBAL\Exception\DriverException {#662
#message: "An exception occurred while executing a query: SQLSTATE [22018, 245]: [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Conversion failed when converting the nvarchar value 'batch-delete' to data type int."
#code: 245
#file: "/var/www/boyekoli/vendor/doctrine/dbal/src/Driver/API/SQLSrv/ExceptionConverter.php"
#line: 67
-previous: Doctrine\DBAL\Driver\SQLSrv\Exception\Error {#658 …}
-query: Doctrine\DBAL\Query {#661 …}
trace: {
/var/www/boyekoli/vendor/doctrine/dbal/src/Driver/API/SQLSrv/ExceptionConverter.php:67 {
Doctrine\DBAL\Driver\API\SQLSrv\ExceptionConverter->convert(Exception $exception, ?Query $query): DriverException …
›
› return new DriverException($exception, $query);
› }
}
/var/www/boyekoli/vendor/doctrine/dbal/src/Connection.php:1976 {
Doctrine\DBAL\Connection->handleDriverException(Exception $driverException, ?Query $query): DriverException …
› $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
› $exception = $this->exceptionConverter->convert($driverException, $query);
›
}
/var/www/boyekoli/vendor/doctrine/dbal/src/Connection.php:1918 {
Doctrine\DBAL\Connection->convertExceptionDuringQuery(Exception $e, string $sql, array $params = [], array $types = []): DriverException …
› ): DriverException {
› return $this->handleDriverException($e, new Query($sql, $params, $types));
› }
}
/var/www/boyekoli/vendor/doctrine/dbal/src/Connection.php:1111 {
Doctrine\DBAL\Connection->executeQuery(string $sql, array $params = [], $types = [], ?QueryCacheProfile $qcp = null): Result …
› } catch (Driver\Exception $e) {
› throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
› } finally {
}
/var/www/boyekoli/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:740 {
Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array $criteria, ?object $entity = null, ?AssociationMapping $assoc = null, array $hints = [], Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $limit = null, ?array $orderBy = null): ?object …
› [$params, $types] = $this->expandParameters($criteria);
› $stmt = $this->conn->executeQuery($sql, $params, $types);
›
}
/var/www/boyekoli/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:758 {
Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadById(array $identifier, ?object $entity = null): ?object …
› {
› return $this->load($identifier, $entity);
› }
}
/var/www/boyekoli/vendor/doctrine/orm/src/EntityManager.php:366 {
Doctrine\ORM\EntityManager->find($className, mixed $id, Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $lockVersion = null): ?object …
› default:
› return $persister->loadById($sortedId);
› }
}
/var/www/boyekoli/vendor/doctrine/orm/src/EntityRepository.php:86 {
Doctrine\ORM\EntityRepository->find(mixed $id, Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $lockVersion = null): ?object …
› {
› return $this->em->find($this->entityName, $id, $lockMode, $lockVersion);
› }
}
/var/www/boyekoli/vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:61 {
Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->find(mixed $id, Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $lockVersion = null): ?object …
› return ($this->repository ??= $this->resolveRepository())
› ->find($id, $lockMode, $lockVersion);
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php:171 {
EasyCorp\Bundle\EasyAdminBundle\Factory\EntityFactory->getEntityInstance(string $entityFqcn, mixed $entityIdValue): object …
› $entityManager = $this->getEntityManager($entityFqcn);
› if (null === $entityInstance = $entityManager->getRepository($entityFqcn)->find($entityIdValue)) {
› $entityIdName = $entityManager->getClassMetadata($entityFqcn)->getIdentifierFieldNames()[0];
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php:130 {
EasyCorp\Bundle\EasyAdminBundle\Factory\EntityFactory->doCreate(?string $entityFqcn = null, mixed $entityId = null, Symfony\Component\ExpressionLanguage\Expression|string|null $entityPermission = null, ?object $entityInstance = null): EntityDto …
› if (null === $entityInstance && null !== $entityFqcn) {
› $entityInstance = null === $entityId ? null : $this->getEntityInstance($entityFqcn, $entityId);
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php:73 {
EasyCorp\Bundle\EasyAdminBundle\Factory\EntityFactory->create(string $entityFqcn, mixed $entityId = null, Symfony\Component\ExpressionLanguage\Expression|string|null $entityPermission = null): EntityDto …
› {
› return $this->doCreate($entityFqcn, $entityId, $entityPermission);
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/AdminContextFactory.php:253 {
EasyCorp\Bundle\EasyAdminBundle\Factory\AdminContextFactory->getEntityDto(Request $request, ?CrudDto $crudDto): EntityDto …
›
› return $this->entityFactory->create($crudDto->getEntityFqcn(), $entityId, $crudDto->getEntityPermission());
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/AdminContextFactory.php:65 {
EasyCorp\Bundle\EasyAdminBundle\Factory\AdminContextFactory->create(Request $request, DashboardControllerInterface $dashboardController, ?CrudControllerInterface $crudController, ?string $actionName = null): AdminContext …
› $crudDto = $this->getCrudDto($this->crudControllers, $dashboardController, $crudController, $actionConfigDto, $filters, $crudAction, $pageName);
› $entityDto = $this->getEntityDto($request, $crudDto);
› $searchDto = $this->getSearchDto($request, $crudDto);
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/EventListener/AdminRouterSubscriber.php:141 {
EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber->onKernelRequestPrettyUrls(RequestEvent $event): void …
› $crudControllerInstance = $this->controllerFactory->getCrudControllerInstance($crudControllerFqcn, $actionName, $request);
› $adminContext = $this->adminContextFactory->create($request, $dashboardControllerInstance, $crudControllerInstance, $actionName);
› }
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/EventDispatcher.php:220 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
› }
› $listener($event, $eventName, $this);
› }
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
}
/var/www/boyekoli/vendor/symfony/http-kernel/HttpKernel.php:157 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
}
/var/www/boyekoli/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/var/www/boyekoli/vendor/symfony/http-kernel/Kernel.php:197 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
}
/var/www/boyekoli/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/var/www/boyekoli/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/var/www/boyekoli/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/var/www/boyekoli/vendor/autoload_runtime.php"
}
}
}
} |
logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#208
-records: [
2 => [
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.799+00:00"
"message" => "Matched route "{route}"."
"priority" => 200
"priorityName" => "INFO"
"context" => [
"route" => "admin_user_detail"
"route_parameters" => [
"_route" => "admin_user_detail"
"_locale" => "en"
"_controller" => "App\Controller\Admin\UserCrudController::detail"
"routeCreatedByEasyAdmin" => true
"dashboardControllerFqcn" => "App\Controller\Admin\EasyadminController"
"crudControllerFqcn" => "App\Controller\Admin\UserCrudController"
"crudAction" => "detail"
"entityId" => "batch-delete"
]
"request_uri" => "https://boyekoli.com/admin/user/batch-delete?page=1&sort%5Busername%5D=ASC"
"method" => "GET"
]
"channel" => "request"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.803+00:00"
"message" => "Checking for authenticator support."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticators" => 2
]
"channel" => "security"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.803+00:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "App\Security\Authenticator"
]
"channel" => "security"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.803+00:00"
"message" => "Authenticator does not support the request."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "App\Security\Authenticator"
]
"channel" => "security"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.803+00:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.803+00:00"
"message" => "Authenticator does not support the request."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.809+00:00"
"message" => "Connecting with parameters {params}"
"priority" => 200
"priorityName" => "INFO"
"context" => [
"params" => [
"driver" => "sqlsrv"
"charset" => "UTF-8"
"use_savepoints" => true
"idle_connection_ttl" => 600
"host" => "localhost"
"port" => 1433
"user" => "sa"
"password" => "<redacted>"
"driverOptions" => [
"TrustServerCertificate" => 1
"Encrypt" => 0
"MultipleActiveResultSets" => true
]
"defaultTableOptions" => [
"charset" => "utf8"
"collate" => "utf8_unicode_ci"
]
"dbname" => "bosolo_db"
"TrustServerCertificate" => "1"
"Encrypt" => "0"
"CharacterSet" => "UTF-8"
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.844+00:00"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT t0.id AS id_1, t0.username AS username_2, t0.roles AS roles_3, t0.password AS password_4, t0.full_name AS full_name_5, t0.email AS email_6, t0.phone AS phone_7, t0.is_template AS is_template_8, t0.status_id AS status_id_9, t0.fonction_id AS fonction_id_10, t0.service_id AS service_id_11 FROM [user] t0 WHERE t0.id = ?"
"params" => [
1 => "batch-delete"
]
"types" => [
1 => 1
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.849+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Uncaught PHP Exception Doctrine\DBAL\Exception\DriverException: "An exception occurred while executing a query: SQLSTATE [22018, 245]: [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Conversion failed when converting the nvarchar value 'batch-delete' to data type int." at ExceptionConverter.php line 67"
"priority" => 500
"priorityName" => "CRITICAL"
"context" => [
"exception" => Doctrine\DBAL\Exception\DriverException {#662
#message: "An exception occurred while executing a query: SQLSTATE [22018, 245]: [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Conversion failed when converting the nvarchar value 'batch-delete' to data type int."
#code: 245
#file: "/var/www/boyekoli/vendor/doctrine/dbal/src/Driver/API/SQLSrv/ExceptionConverter.php"
#line: 67
-previous: Doctrine\DBAL\Driver\SQLSrv\Exception\Error {#658 …}
-query: Doctrine\DBAL\Query {#661 …}
trace: {
/var/www/boyekoli/vendor/doctrine/dbal/src/Driver/API/SQLSrv/ExceptionConverter.php:67 {
Doctrine\DBAL\Driver\API\SQLSrv\ExceptionConverter->convert(Exception $exception, ?Query $query): DriverException …
›
› return new DriverException($exception, $query);
› }
}
/var/www/boyekoli/vendor/doctrine/dbal/src/Connection.php:1976 {
Doctrine\DBAL\Connection->handleDriverException(Exception $driverException, ?Query $query): DriverException …
› $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
› $exception = $this->exceptionConverter->convert($driverException, $query);
›
}
/var/www/boyekoli/vendor/doctrine/dbal/src/Connection.php:1918 {
Doctrine\DBAL\Connection->convertExceptionDuringQuery(Exception $e, string $sql, array $params = [], array $types = []): DriverException …
› ): DriverException {
› return $this->handleDriverException($e, new Query($sql, $params, $types));
› }
}
/var/www/boyekoli/vendor/doctrine/dbal/src/Connection.php:1111 {
Doctrine\DBAL\Connection->executeQuery(string $sql, array $params = [], $types = [], ?QueryCacheProfile $qcp = null): Result …
› } catch (Driver\Exception $e) {
› throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
› } finally {
}
/var/www/boyekoli/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:740 {
Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array $criteria, ?object $entity = null, ?AssociationMapping $assoc = null, array $hints = [], Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $limit = null, ?array $orderBy = null): ?object …
› [$params, $types] = $this->expandParameters($criteria);
› $stmt = $this->conn->executeQuery($sql, $params, $types);
›
}
/var/www/boyekoli/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:758 {
Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadById(array $identifier, ?object $entity = null): ?object …
› {
› return $this->load($identifier, $entity);
› }
}
/var/www/boyekoli/vendor/doctrine/orm/src/EntityManager.php:366 {
Doctrine\ORM\EntityManager->find($className, mixed $id, Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $lockVersion = null): ?object …
› default:
› return $persister->loadById($sortedId);
› }
}
/var/www/boyekoli/vendor/doctrine/orm/src/EntityRepository.php:86 {
Doctrine\ORM\EntityRepository->find(mixed $id, Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $lockVersion = null): ?object …
› {
› return $this->em->find($this->entityName, $id, $lockMode, $lockVersion);
› }
}
/var/www/boyekoli/vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:61 {
Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->find(mixed $id, Doctrine\DBAL\LockMode|int|null $lockMode = null, ?int $lockVersion = null): ?object …
› return ($this->repository ??= $this->resolveRepository())
› ->find($id, $lockMode, $lockVersion);
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php:171 {
EasyCorp\Bundle\EasyAdminBundle\Factory\EntityFactory->getEntityInstance(string $entityFqcn, mixed $entityIdValue): object …
› $entityManager = $this->getEntityManager($entityFqcn);
› if (null === $entityInstance = $entityManager->getRepository($entityFqcn)->find($entityIdValue)) {
› $entityIdName = $entityManager->getClassMetadata($entityFqcn)->getIdentifierFieldNames()[0];
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php:130 {
EasyCorp\Bundle\EasyAdminBundle\Factory\EntityFactory->doCreate(?string $entityFqcn = null, mixed $entityId = null, Symfony\Component\ExpressionLanguage\Expression|string|null $entityPermission = null, ?object $entityInstance = null): EntityDto …
› if (null === $entityInstance && null !== $entityFqcn) {
› $entityInstance = null === $entityId ? null : $this->getEntityInstance($entityFqcn, $entityId);
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/EntityFactory.php:73 {
EasyCorp\Bundle\EasyAdminBundle\Factory\EntityFactory->create(string $entityFqcn, mixed $entityId = null, Symfony\Component\ExpressionLanguage\Expression|string|null $entityPermission = null): EntityDto …
› {
› return $this->doCreate($entityFqcn, $entityId, $entityPermission);
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/AdminContextFactory.php:253 {
EasyCorp\Bundle\EasyAdminBundle\Factory\AdminContextFactory->getEntityDto(Request $request, ?CrudDto $crudDto): EntityDto …
›
› return $this->entityFactory->create($crudDto->getEntityFqcn(), $entityId, $crudDto->getEntityPermission());
› }
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/Factory/AdminContextFactory.php:65 {
EasyCorp\Bundle\EasyAdminBundle\Factory\AdminContextFactory->create(Request $request, DashboardControllerInterface $dashboardController, ?CrudControllerInterface $crudController, ?string $actionName = null): AdminContext …
› $crudDto = $this->getCrudDto($this->crudControllers, $dashboardController, $crudController, $actionConfigDto, $filters, $crudAction, $pageName);
› $entityDto = $this->getEntityDto($request, $crudDto);
› $searchDto = $this->getSearchDto($request, $crudDto);
}
/var/www/boyekoli/vendor/easycorp/easyadmin-bundle/src/EventListener/AdminRouterSubscriber.php:141 {
EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber->onKernelRequestPrettyUrls(RequestEvent $event): void …
› $crudControllerInstance = $this->controllerFactory->getCrudControllerInstance($crudControllerFqcn, $actionName, $request);
› $adminContext = $this->adminContextFactory->create($request, $dashboardControllerInstance, $crudControllerInstance, $actionName);
› }
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/EventDispatcher.php:220 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
› }
› $listener($event, $eventName, $this);
› }
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
}
/var/www/boyekoli/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
}
/var/www/boyekoli/vendor/symfony/http-kernel/HttpKernel.php:157 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
}
/var/www/boyekoli/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/var/www/boyekoli/vendor/symfony/http-kernel/Kernel.php:197 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
}
/var/www/boyekoli/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/var/www/boyekoli/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/var/www/boyekoli/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/var/www/boyekoli/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "App\EventSubscriber\AccessDeniedSubscriber::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\WebpackEncoreBundle\EventListener\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Listener "{listener}" stopped propagation of the event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.147+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
878 => [
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.855+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.856+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.856+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.856+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerN7Wdofx\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1760382355
"timestamp_rfc3339" => "2025-10-13T19:05:55.856+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
]
"channel" => "event"
]
[
"timestamp" => 1760382356
"timestamp_rfc3339" => "2025-10-13T19:05:56.111+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
]
-errorCount: [
2 => 1
878 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#207 …}
} |