https://iconicawards.preview.schittigs.dev/.env

Exceptions

An exception occurred in the driver: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Name or service not known

Exceptions 4

Doctrine\DBAL\Exception\ ConnectionException

  1. case 1370:
  2. case 1429:
  3. case 2002:
  4. case 2005:
  5. case 2054:
  6. return new ConnectionException($exception, $query);
  7. case 2006:
  8. case 4031:
  9. return new ConnectionLost($exception, $query);
  1. private function handleDriverException(
  2. Driver\Exception $driverException,
  3. ?Query $query
  4. ): DriverException {
  5. $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
  6. $exception = $this->exceptionConverter->convert($driverException, $query);
  7. if ($exception instanceof ConnectionLost) {
  8. $this->close();
  9. }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1924)
  1. }
  2. /** @internal */
  3. final public function convertException(Driver\Exception $e): DriverException
  4. {
  5. return $this->handleDriverException($e, null);
  6. }
  7. /**
  8. * @param array<int, mixed>|array<string, mixed> $params
  9. * @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types
in vendor/doctrine/dbal/src/Connection.php -> convertException (line 385)
  1. }
  2. try {
  3. $this->_conn = $this->_driver->connect($this->params);
  4. } catch (Driver\Exception $e) {
  5. throw $this->convertException($e);
  6. }
  7. if ($this->autoCommit === false) {
  8. $this->beginTransaction();
  9. }
  1. 'https://github.com/doctrine/dbal/issues/4966',
  2. 'Connection::getWrappedConnection() is deprecated.'
  3. . ' Use Connection::getNativeConnection() to access the native connection.',
  4. );
  5. $this->connect();
  6. return $this->_conn;
  7. }
  8. /** @return resource|object */
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1087)
  1. ): Result {
  2. if ($qcp !== null) {
  3. return $this->executeCacheQuery($sql, $params, $types, $qcp);
  4. }
  5. $connection = $this->getWrappedConnection();
  6. $logger = $this->_config->getSQLLogger();
  7. if ($logger !== null) {
  8. $logger->startQuery($sql, $params, $types);
  9. }
  1. // Execute the query
  2. // TODO: remove the try/catch block in Contao 5.0
  3. try
  4. {
  5. $this->statement = $this->resConnection->executeQuery($this->strQuery, $arrParams, $arrTypes);
  6. }
  7. catch (DriverException|\ArgumentCountError $exception)
  8. {
  9. // SQLSTATE[HY000]: This command is not supported in the prepared statement protocol
  10. if ($exception->getCode() === 1295)
  1. trigger_deprecation('contao/core-bundle', '4.13', 'Using "%s()" with an array parameter has been deprecated and will no longer work in Contao 5.0. Use argument unpacking via ... instead."', __METHOD__);
  2. $arrParams = array_values($arrParams[0]);
  3. }
  4. return $this->query('', array_merge($this->arrSetParams, $arrParams));
  5. }
  6. /**
  7. * Directly send a query string to the database
  8. *
  1. {
  2. $arrOptions['value'] = array();
  3. }
  4. $objStatement = static::preFind($objStatement);
  5. $objResult = $objStatement->execute(...array_values(\is_array($arrOptions['value']) ? $arrOptions['value'] : array($arrOptions['value'])));
  6. if ($objResult->numRows < 1)
  7. {
  8. return ($arrOptions['return'] ?? null) == 'Array' ? array() : null;
  9. }
  1. 'return' => $blnModel ? 'Model' : 'Collection'
  2. ),
  3. $arrOptions
  4. );
  5. return static::find($arrOptions);
  6. }
  7. /**
  8. * Find all records
  9. *
  1. *
  2. * @return mixed
  3. */
  4. public function __call(string $name, array $arguments)
  5. {
  6. return \call_user_func_array([$this->class, $name], $arguments);
  7. }
  8. }
  1. if (!empty($aliases)) {
  2. $conditions[] = 'tl_page.alias IN ('.implode(',', array_fill(0, \count($aliases), '?')).')';
  3. }
  4. $pageModel = $this->framework->getAdapter(PageModel::class);
  5. $pages = $pageModel->findBy([implode(' OR ', $conditions)], $aliases);
  6. if (!$pages instanceof Collection) {
  7. return [];
  8. }
  1. $this->addRoutesForRootPages($this->findRootPages($request->getHttpHost()), $routes);
  2. return $this->createCollectionForRoutes($routes, $request->getLanguages());
  3. }
  4. $pages = $this->findCandidatePages($request);
  5. if (empty($pages)) {
  6. return new RouteCollection();
  7. }
in vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php -> getRouteCollectionForRequest (line 140)
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. $collection = $this->routeProvider->getRouteCollectionForRequest($request);
  7. if (!count($collection)) {
  8. throw new ResourceNotFoundException();
  9. }
  10. // Route filters are expected to throw an exception themselves if they
  1. '/' === $pathInfo
  2. || empty($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  3. || !\is_array($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  4. || ($this->prependLocale && preg_match('@^/([a-z]{2}(-[A-Z]{2})?)/$@', $pathInfo))
  5. ) {
  6. return $this->requestMatcher->matchRequest($request);
  7. }
  8. $locale = null;
  9. $fragments = null;
  1. $matcher = $this->getMatcher();
  2. if ($matcher instanceof UrlMatcherInterface) {
  3. $defaults = $matcher->match($request->getPathInfo());
  4. } else {
  5. $defaults = $matcher->matchRequest($request);
  6. }
  7. return $this->applyRouteEnhancers($defaults, $request);
  8. }
  1. if ($router instanceof RequestMatcherInterface) {
  2. if (null === $requestForMatching) {
  3. $requestForMatching = $this->rebuildRequest($pathinfo);
  4. }
  5. return $router->matchRequest($requestForMatching);
  6. }
  7. // every router implements the match method
  8. return $router->match($pathinfo);
  9. } catch (ResourceNotFoundException $e) {
  1. *
  2. * Loops through all routes and tries to match the passed request.
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. return $this->doMatch($request->getPathInfo(), $request);
  7. }
  8. /**
  9. * Loops through all routers and tries to match the passed request or url.
  10. *
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. if (null !== $this->logger) {
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
Kernel->handle() in web/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request = Request::createFromGlobals();
  3. $kernel = ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response = $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7. $kernel->terminate($request, $response);
  8. }

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  1. } else {
  2. $code = $exception->getCode();
  3. $sqlState = null;
  4. }
  5. return new self($exception->getMessage(), $sqlState, $code, $exception);
  6. }
  7. }
  1. $params['user'] ?? '',
  2. $params['password'] ?? '',
  3. $driverOptions,
  4. );
  5. } catch (PDOException $exception) {
  6. throw Exception::new($exception);
  7. }
  8. return new Connection($pdo);
  9. }
  1. */
  2. public function connect(
  3. #[SensitiveParameter]
  4. array $params
  5. ) {
  6. return $this->wrappedDriver->connect($params);
  7. }
  8. /**
  9. * {@inheritDoc}
  10. */
  1. array $params
  2. ) {
  3. $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4. return new Connection(
  5. parent::connect($params),
  6. $this->logger,
  7. );
  8. }
  9. /**
  1. */
  2. public function connect(
  3. #[SensitiveParameter]
  4. array $params
  5. ) {
  6. return $this->wrappedDriver->connect($params);
  7. }
  8. /**
  9. * {@inheritDoc}
  10. */
  1. $this->connectionName = $connectionName;
  2. }
  3. public function connect(array $params): ConnectionInterface
  4. {
  5. $connection = parent::connect($params);
  6. if ('void' !== (string) (new \ReflectionMethod(DriverInterface\Connection::class, 'commit'))->getReturnType()) {
  7. return new DBAL3\Connection(
  8. $connection,
  9. $this->debugDataHolder,
  1. if ($this->_conn !== null) {
  2. return false;
  3. }
  4. try {
  5. $this->_conn = $this->_driver->connect($this->params);
  6. } catch (Driver\Exception $e) {
  7. throw $this->convertException($e);
  8. }
  9. if ($this->autoCommit === false) {
  1. 'https://github.com/doctrine/dbal/issues/4966',
  2. 'Connection::getWrappedConnection() is deprecated.'
  3. . ' Use Connection::getNativeConnection() to access the native connection.',
  4. );
  5. $this->connect();
  6. return $this->_conn;
  7. }
  8. /** @return resource|object */
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1087)
  1. ): Result {
  2. if ($qcp !== null) {
  3. return $this->executeCacheQuery($sql, $params, $types, $qcp);
  4. }
  5. $connection = $this->getWrappedConnection();
  6. $logger = $this->_config->getSQLLogger();
  7. if ($logger !== null) {
  8. $logger->startQuery($sql, $params, $types);
  9. }
  1. // Execute the query
  2. // TODO: remove the try/catch block in Contao 5.0
  3. try
  4. {
  5. $this->statement = $this->resConnection->executeQuery($this->strQuery, $arrParams, $arrTypes);
  6. }
  7. catch (DriverException|\ArgumentCountError $exception)
  8. {
  9. // SQLSTATE[HY000]: This command is not supported in the prepared statement protocol
  10. if ($exception->getCode() === 1295)
  1. trigger_deprecation('contao/core-bundle', '4.13', 'Using "%s()" with an array parameter has been deprecated and will no longer work in Contao 5.0. Use argument unpacking via ... instead."', __METHOD__);
  2. $arrParams = array_values($arrParams[0]);
  3. }
  4. return $this->query('', array_merge($this->arrSetParams, $arrParams));
  5. }
  6. /**
  7. * Directly send a query string to the database
  8. *
  1. {
  2. $arrOptions['value'] = array();
  3. }
  4. $objStatement = static::preFind($objStatement);
  5. $objResult = $objStatement->execute(...array_values(\is_array($arrOptions['value']) ? $arrOptions['value'] : array($arrOptions['value'])));
  6. if ($objResult->numRows < 1)
  7. {
  8. return ($arrOptions['return'] ?? null) == 'Array' ? array() : null;
  9. }
  1. 'return' => $blnModel ? 'Model' : 'Collection'
  2. ),
  3. $arrOptions
  4. );
  5. return static::find($arrOptions);
  6. }
  7. /**
  8. * Find all records
  9. *
  1. *
  2. * @return mixed
  3. */
  4. public function __call(string $name, array $arguments)
  5. {
  6. return \call_user_func_array([$this->class, $name], $arguments);
  7. }
  8. }
  1. if (!empty($aliases)) {
  2. $conditions[] = 'tl_page.alias IN ('.implode(',', array_fill(0, \count($aliases), '?')).')';
  3. }
  4. $pageModel = $this->framework->getAdapter(PageModel::class);
  5. $pages = $pageModel->findBy([implode(' OR ', $conditions)], $aliases);
  6. if (!$pages instanceof Collection) {
  7. return [];
  8. }
  1. $this->addRoutesForRootPages($this->findRootPages($request->getHttpHost()), $routes);
  2. return $this->createCollectionForRoutes($routes, $request->getLanguages());
  3. }
  4. $pages = $this->findCandidatePages($request);
  5. if (empty($pages)) {
  6. return new RouteCollection();
  7. }
in vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php -> getRouteCollectionForRequest (line 140)
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. $collection = $this->routeProvider->getRouteCollectionForRequest($request);
  7. if (!count($collection)) {
  8. throw new ResourceNotFoundException();
  9. }
  10. // Route filters are expected to throw an exception themselves if they
  1. '/' === $pathInfo
  2. || empty($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  3. || !\is_array($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  4. || ($this->prependLocale && preg_match('@^/([a-z]{2}(-[A-Z]{2})?)/$@', $pathInfo))
  5. ) {
  6. return $this->requestMatcher->matchRequest($request);
  7. }
  8. $locale = null;
  9. $fragments = null;
  1. $matcher = $this->getMatcher();
  2. if ($matcher instanceof UrlMatcherInterface) {
  3. $defaults = $matcher->match($request->getPathInfo());
  4. } else {
  5. $defaults = $matcher->matchRequest($request);
  6. }
  7. return $this->applyRouteEnhancers($defaults, $request);
  8. }
  1. if ($router instanceof RequestMatcherInterface) {
  2. if (null === $requestForMatching) {
  3. $requestForMatching = $this->rebuildRequest($pathinfo);
  4. }
  5. return $router->matchRequest($requestForMatching);
  6. }
  7. // every router implements the match method
  8. return $router->match($pathinfo);
  9. } catch (ResourceNotFoundException $e) {
  1. *
  2. * Loops through all routes and tries to match the passed request.
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. return $this->doMatch($request->getPathInfo(), $request);
  7. }
  8. /**
  9. * Loops through all routers and tries to match the passed request or url.
  10. *
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. if (null !== $this->logger) {
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
Kernel->handle() in web/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request = Request::createFromGlobals();
  3. $kernel = ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response = $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7. $kernel->terminate($request, $response);
  8. }

PDOException

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  1. $safeParams = $params;
  2. unset($safeParams['password'], $safeParams['url']);
  3. try {
  4. $pdo = new PDO(
  5. $this->constructPdoDsn($safeParams),
  6. $params['user'] ?? '',
  7. $params['password'] ?? '',
  8. $driverOptions,
  9. );
  1. $safeParams = $params;
  2. unset($safeParams['password'], $safeParams['url']);
  3. try {
  4. $pdo = new PDO(
  5. $this->constructPdoDsn($safeParams),
  6. $params['user'] ?? '',
  7. $params['password'] ?? '',
  8. $driverOptions,
  9. );
  1. */
  2. public function connect(
  3. #[SensitiveParameter]
  4. array $params
  5. ) {
  6. return $this->wrappedDriver->connect($params);
  7. }
  8. /**
  9. * {@inheritDoc}
  10. */
  1. array $params
  2. ) {
  3. $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4. return new Connection(
  5. parent::connect($params),
  6. $this->logger,
  7. );
  8. }
  9. /**
  1. */
  2. public function connect(
  3. #[SensitiveParameter]
  4. array $params
  5. ) {
  6. return $this->wrappedDriver->connect($params);
  7. }
  8. /**
  9. * {@inheritDoc}
  10. */
  1. $this->connectionName = $connectionName;
  2. }
  3. public function connect(array $params): ConnectionInterface
  4. {
  5. $connection = parent::connect($params);
  6. if ('void' !== (string) (new \ReflectionMethod(DriverInterface\Connection::class, 'commit'))->getReturnType()) {
  7. return new DBAL3\Connection(
  8. $connection,
  9. $this->debugDataHolder,
  1. if ($this->_conn !== null) {
  2. return false;
  3. }
  4. try {
  5. $this->_conn = $this->_driver->connect($this->params);
  6. } catch (Driver\Exception $e) {
  7. throw $this->convertException($e);
  8. }
  9. if ($this->autoCommit === false) {
  1. 'https://github.com/doctrine/dbal/issues/4966',
  2. 'Connection::getWrappedConnection() is deprecated.'
  3. . ' Use Connection::getNativeConnection() to access the native connection.',
  4. );
  5. $this->connect();
  6. return $this->_conn;
  7. }
  8. /** @return resource|object */
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1087)
  1. ): Result {
  2. if ($qcp !== null) {
  3. return $this->executeCacheQuery($sql, $params, $types, $qcp);
  4. }
  5. $connection = $this->getWrappedConnection();
  6. $logger = $this->_config->getSQLLogger();
  7. if ($logger !== null) {
  8. $logger->startQuery($sql, $params, $types);
  9. }
  1. // Execute the query
  2. // TODO: remove the try/catch block in Contao 5.0
  3. try
  4. {
  5. $this->statement = $this->resConnection->executeQuery($this->strQuery, $arrParams, $arrTypes);
  6. }
  7. catch (DriverException|\ArgumentCountError $exception)
  8. {
  9. // SQLSTATE[HY000]: This command is not supported in the prepared statement protocol
  10. if ($exception->getCode() === 1295)
  1. trigger_deprecation('contao/core-bundle', '4.13', 'Using "%s()" with an array parameter has been deprecated and will no longer work in Contao 5.0. Use argument unpacking via ... instead."', __METHOD__);
  2. $arrParams = array_values($arrParams[0]);
  3. }
  4. return $this->query('', array_merge($this->arrSetParams, $arrParams));
  5. }
  6. /**
  7. * Directly send a query string to the database
  8. *
  1. {
  2. $arrOptions['value'] = array();
  3. }
  4. $objStatement = static::preFind($objStatement);
  5. $objResult = $objStatement->execute(...array_values(\is_array($arrOptions['value']) ? $arrOptions['value'] : array($arrOptions['value'])));
  6. if ($objResult->numRows < 1)
  7. {
  8. return ($arrOptions['return'] ?? null) == 'Array' ? array() : null;
  9. }
  1. 'return' => $blnModel ? 'Model' : 'Collection'
  2. ),
  3. $arrOptions
  4. );
  5. return static::find($arrOptions);
  6. }
  7. /**
  8. * Find all records
  9. *
  1. *
  2. * @return mixed
  3. */
  4. public function __call(string $name, array $arguments)
  5. {
  6. return \call_user_func_array([$this->class, $name], $arguments);
  7. }
  8. }
  1. if (!empty($aliases)) {
  2. $conditions[] = 'tl_page.alias IN ('.implode(',', array_fill(0, \count($aliases), '?')).')';
  3. }
  4. $pageModel = $this->framework->getAdapter(PageModel::class);
  5. $pages = $pageModel->findBy([implode(' OR ', $conditions)], $aliases);
  6. if (!$pages instanceof Collection) {
  7. return [];
  8. }
  1. $this->addRoutesForRootPages($this->findRootPages($request->getHttpHost()), $routes);
  2. return $this->createCollectionForRoutes($routes, $request->getLanguages());
  3. }
  4. $pages = $this->findCandidatePages($request);
  5. if (empty($pages)) {
  6. return new RouteCollection();
  7. }
in vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php -> getRouteCollectionForRequest (line 140)
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. $collection = $this->routeProvider->getRouteCollectionForRequest($request);
  7. if (!count($collection)) {
  8. throw new ResourceNotFoundException();
  9. }
  10. // Route filters are expected to throw an exception themselves if they
  1. '/' === $pathInfo
  2. || empty($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  3. || !\is_array($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  4. || ($this->prependLocale && preg_match('@^/([a-z]{2}(-[A-Z]{2})?)/$@', $pathInfo))
  5. ) {
  6. return $this->requestMatcher->matchRequest($request);
  7. }
  8. $locale = null;
  9. $fragments = null;
  1. $matcher = $this->getMatcher();
  2. if ($matcher instanceof UrlMatcherInterface) {
  3. $defaults = $matcher->match($request->getPathInfo());
  4. } else {
  5. $defaults = $matcher->matchRequest($request);
  6. }
  7. return $this->applyRouteEnhancers($defaults, $request);
  8. }
  1. if ($router instanceof RequestMatcherInterface) {
  2. if (null === $requestForMatching) {
  3. $requestForMatching = $this->rebuildRequest($pathinfo);
  4. }
  5. return $router->matchRequest($requestForMatching);
  6. }
  7. // every router implements the match method
  8. return $router->match($pathinfo);
  9. } catch (ResourceNotFoundException $e) {
  1. *
  2. * Loops through all routes and tries to match the passed request.
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. return $this->doMatch($request->getPathInfo(), $request);
  7. }
  8. /**
  9. * Loops through all routers and tries to match the passed request or url.
  10. *
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. if (null !== $this->logger) {
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
Kernel->handle() in web/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request = Request::createFromGlobals();
  3. $kernel = ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response = $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7. $kernel->terminate($request, $response);
  8. }

PDOException

PDO::__construct(): php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  1. $safeParams = $params;
  2. unset($safeParams['password'], $safeParams['url']);
  3. try {
  4. $pdo = new PDO(
  5. $this->constructPdoDsn($safeParams),
  6. $params['user'] ?? '',
  7. $params['password'] ?? '',
  8. $driverOptions,
  9. );
  1. $safeParams = $params;
  2. unset($safeParams['password'], $safeParams['url']);
  3. try {
  4. $pdo = new PDO(
  5. $this->constructPdoDsn($safeParams),
  6. $params['user'] ?? '',
  7. $params['password'] ?? '',
  8. $driverOptions,
  9. );
  1. */
  2. public function connect(
  3. #[SensitiveParameter]
  4. array $params
  5. ) {
  6. return $this->wrappedDriver->connect($params);
  7. }
  8. /**
  9. * {@inheritDoc}
  10. */
  1. array $params
  2. ) {
  3. $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4. return new Connection(
  5. parent::connect($params),
  6. $this->logger,
  7. );
  8. }
  9. /**
  1. */
  2. public function connect(
  3. #[SensitiveParameter]
  4. array $params
  5. ) {
  6. return $this->wrappedDriver->connect($params);
  7. }
  8. /**
  9. * {@inheritDoc}
  10. */
  1. $this->connectionName = $connectionName;
  2. }
  3. public function connect(array $params): ConnectionInterface
  4. {
  5. $connection = parent::connect($params);
  6. if ('void' !== (string) (new \ReflectionMethod(DriverInterface\Connection::class, 'commit'))->getReturnType()) {
  7. return new DBAL3\Connection(
  8. $connection,
  9. $this->debugDataHolder,
  1. if ($this->_conn !== null) {
  2. return false;
  3. }
  4. try {
  5. $this->_conn = $this->_driver->connect($this->params);
  6. } catch (Driver\Exception $e) {
  7. throw $this->convertException($e);
  8. }
  9. if ($this->autoCommit === false) {
  1. 'https://github.com/doctrine/dbal/issues/4966',
  2. 'Connection::getWrappedConnection() is deprecated.'
  3. . ' Use Connection::getNativeConnection() to access the native connection.',
  4. );
  5. $this->connect();
  6. return $this->_conn;
  7. }
  8. /** @return resource|object */
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1087)
  1. ): Result {
  2. if ($qcp !== null) {
  3. return $this->executeCacheQuery($sql, $params, $types, $qcp);
  4. }
  5. $connection = $this->getWrappedConnection();
  6. $logger = $this->_config->getSQLLogger();
  7. if ($logger !== null) {
  8. $logger->startQuery($sql, $params, $types);
  9. }
  1. // Execute the query
  2. // TODO: remove the try/catch block in Contao 5.0
  3. try
  4. {
  5. $this->statement = $this->resConnection->executeQuery($this->strQuery, $arrParams, $arrTypes);
  6. }
  7. catch (DriverException|\ArgumentCountError $exception)
  8. {
  9. // SQLSTATE[HY000]: This command is not supported in the prepared statement protocol
  10. if ($exception->getCode() === 1295)
  1. trigger_deprecation('contao/core-bundle', '4.13', 'Using "%s()" with an array parameter has been deprecated and will no longer work in Contao 5.0. Use argument unpacking via ... instead."', __METHOD__);
  2. $arrParams = array_values($arrParams[0]);
  3. }
  4. return $this->query('', array_merge($this->arrSetParams, $arrParams));
  5. }
  6. /**
  7. * Directly send a query string to the database
  8. *
  1. {
  2. $arrOptions['value'] = array();
  3. }
  4. $objStatement = static::preFind($objStatement);
  5. $objResult = $objStatement->execute(...array_values(\is_array($arrOptions['value']) ? $arrOptions['value'] : array($arrOptions['value'])));
  6. if ($objResult->numRows < 1)
  7. {
  8. return ($arrOptions['return'] ?? null) == 'Array' ? array() : null;
  9. }
  1. 'return' => $blnModel ? 'Model' : 'Collection'
  2. ),
  3. $arrOptions
  4. );
  5. return static::find($arrOptions);
  6. }
  7. /**
  8. * Find all records
  9. *
  1. *
  2. * @return mixed
  3. */
  4. public function __call(string $name, array $arguments)
  5. {
  6. return \call_user_func_array([$this->class, $name], $arguments);
  7. }
  8. }
  1. if (!empty($aliases)) {
  2. $conditions[] = 'tl_page.alias IN ('.implode(',', array_fill(0, \count($aliases), '?')).')';
  3. }
  4. $pageModel = $this->framework->getAdapter(PageModel::class);
  5. $pages = $pageModel->findBy([implode(' OR ', $conditions)], $aliases);
  6. if (!$pages instanceof Collection) {
  7. return [];
  8. }
  1. $this->addRoutesForRootPages($this->findRootPages($request->getHttpHost()), $routes);
  2. return $this->createCollectionForRoutes($routes, $request->getLanguages());
  3. }
  4. $pages = $this->findCandidatePages($request);
  5. if (empty($pages)) {
  6. return new RouteCollection();
  7. }
in vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php -> getRouteCollectionForRequest (line 140)
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. $collection = $this->routeProvider->getRouteCollectionForRequest($request);
  7. if (!count($collection)) {
  8. throw new ResourceNotFoundException();
  9. }
  10. // Route filters are expected to throw an exception themselves if they
  1. '/' === $pathInfo
  2. || empty($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  3. || !\is_array($GLOBALS['TL_HOOKS']['getPageIdFromUrl'])
  4. || ($this->prependLocale && preg_match('@^/([a-z]{2}(-[A-Z]{2})?)/$@', $pathInfo))
  5. ) {
  6. return $this->requestMatcher->matchRequest($request);
  7. }
  8. $locale = null;
  9. $fragments = null;
  1. $matcher = $this->getMatcher();
  2. if ($matcher instanceof UrlMatcherInterface) {
  3. $defaults = $matcher->match($request->getPathInfo());
  4. } else {
  5. $defaults = $matcher->matchRequest($request);
  6. }
  7. return $this->applyRouteEnhancers($defaults, $request);
  8. }
  1. if ($router instanceof RequestMatcherInterface) {
  2. if (null === $requestForMatching) {
  3. $requestForMatching = $this->rebuildRequest($pathinfo);
  4. }
  5. return $router->matchRequest($requestForMatching);
  6. }
  7. // every router implements the match method
  8. return $router->match($pathinfo);
  9. } catch (ResourceNotFoundException $e) {
  1. *
  2. * Loops through all routes and tries to match the passed request.
  3. */
  4. public function matchRequest(Request $request)
  5. {
  6. return $this->doMatch($request->getPathInfo(), $request);
  7. }
  8. /**
  9. * Loops through all routers and tries to match the passed request or url.
  10. *
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. if (null !== $this->logger) {
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
Kernel->handle() in web/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request = Request::createFromGlobals();
  3. $kernel = ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response = $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7. $kernel->terminate($request, $response);
  8. }

Logs

Level Channel Message
INFO 22:32:52 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since contao/core-bundle 4.10: Using the "Contao\CoreBundle\Routing\FrontendLoader" class has been deprecated and will no longer work in Contao 5.0. Use Symfony routing instead.
{
    "exception": {}
}
INFO 22:32:52 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "4b774d"
    },
    "request_uri": "https://iconicawards.preview.schittigs.dev/_profiler/4b774d?panel=exception",
    "method": "GET"
}
INFO 22:32:52 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "charset": "utf8mb4",
        "idle_connection_ttl": 600,
        "host": "db",
        "port": 3306,
        "user": "hood_iconic-world",
        "password": "<redacted>",
        "driverOptions": {
            "1013": false,
            "1002": "SET SESSION sql_mode=CONCAT(@@sql_mode, IF(INSTR(@@sql_mode, 'STRICT_'), '', ',TRADITIONAL'))"
        },
        "defaultTableOptions": {
            "charset": "utf8mb4",
            "collation": "utf8mb4_unicode_ci",
            "engine": "InnoDB",
            "row_format": "DYNAMIC",
            "collate": "utf8mb4_unicode_ci"
        },
        "dbname": "hood_iconic-world"
    }
}
INFO 22:32:52 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
DEBUG 22:32:52 doctrine Executing query: SELECT templates FROM tl_theme WHERE templates != ''
{
    "sql": "SELECT templates FROM tl_theme WHERE templates != ''"
}
INFO 22:32:52 deprecation User Deprecated: Since symfony/security-core 5.4: Passing the access decision strategy as a string is deprecated, pass an instance of "Symfony\Component\Security\Core\Authorization\Strategy\AccessDecisionStrategyInterface" instead.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.10: The "Twig\Extension\EscaperExtension::setEnvironment()" method is deprecated and not needed if you are using methods from "Twig\Runtime\EscaperRuntime".
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.10: The "Twig\Extension\EscaperExtension::setEscaper()" method is deprecated, use the "Twig\Runtime\EscaperRuntime::setEscaper()" method instead (be warned that Environment is not passed anymore to the callable).
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.10: The "Twig\Extension\EscaperExtension::setEscaper()" method is deprecated, use the "Twig\Runtime\EscaperRuntime::setEscaper()" method instead (be warned that Environment is not passed anymore to the callable).
{
    "exception": {}
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 22:32:52 deprecation User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead.
{
    "exception": {}
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InitializeControllerListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\InitializeControllerListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Trusted\TrustedCookieResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Trusted\\TrustedCookieResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Codefog\HasteBundle\EventListener\AjaxReloadListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Codefog\\HasteBundle\\EventListener\\AjaxReloadListener::onResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
INFO 22:32:52 deprecation User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated.
{
    "exception": {}
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InitializeControllerListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\InitializeControllerListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Trusted\TrustedCookieResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Trusted\\TrustedCookieResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Codefog\HasteBundle\EventListener\AjaxReloadListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Codefog\\HasteBundle\\EventListener\\AjaxReloadListener::onResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate".
{
    "event": "kernel.response",
    "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
DEBUG 22:32:52 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
DEBUG 22:32:52 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:32:52 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 4

[4/4] ConnectionException
Doctrine\DBAL\Exception\ConnectionException:
An exception occurred in the driver: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:101
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
     (vendor/doctrine/dbal/src/Connection.php:1976)
  at Doctrine\DBAL\Connection->handleDriverException()
     (vendor/doctrine/dbal/src/Connection.php:1924)
  at Doctrine\DBAL\Connection->convertException()
     (vendor/doctrine/dbal/src/Connection.php:385)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1692)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1087)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:285)
  at Contao\Database\Statement->query()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:237)
  at Contao\Database\Statement->execute()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:1096)
  at Contao\Model::find()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:962)
  at Contao\Model::findBy()
     (vendor/contao/core-bundle/src/Framework/Adapter.php:46)
  at Contao\CoreBundle\Framework\Adapter->__call()
     (vendor/contao/core-bundle/src/Routing/AbstractPageRouteProvider.php:72)
  at Contao\CoreBundle\Routing\AbstractPageRouteProvider->findCandidatePages()
     (vendor/contao/core-bundle/src/Routing/RouteProvider.php:63)
  at Contao\CoreBundle\Routing\RouteProvider->getRouteCollectionForRequest()
     (vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
  at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
     (vendor/contao/core-bundle/src/Routing/Matcher/LegacyMatcher.php:55)
  at Contao\CoreBundle\Routing\Matcher\LegacyMatcher->matchRequest()
     (vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
  at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:188)
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/index.php:44)                
[3/4] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:40)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/doctrine/dbal/src/Logging/Driver.php:34)
  at Doctrine\DBAL\Logging\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
     (vendor/doctrine/dbal/src/Connection.php:383)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1692)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1087)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:285)
  at Contao\Database\Statement->query()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:237)
  at Contao\Database\Statement->execute()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:1096)
  at Contao\Model::find()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:962)
  at Contao\Model::findBy()
     (vendor/contao/core-bundle/src/Framework/Adapter.php:46)
  at Contao\CoreBundle\Framework\Adapter->__call()
     (vendor/contao/core-bundle/src/Routing/AbstractPageRouteProvider.php:72)
  at Contao\CoreBundle\Routing\AbstractPageRouteProvider->findCandidatePages()
     (vendor/contao/core-bundle/src/Routing/RouteProvider.php:63)
  at Contao\CoreBundle\Routing\RouteProvider->getRouteCollectionForRequest()
     (vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
  at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
     (vendor/contao/core-bundle/src/Routing/Matcher/LegacyMatcher.php:55)
  at Contao\CoreBundle\Routing\Matcher\LegacyMatcher->matchRequest()
     (vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
  at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:188)
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/index.php:44)                
[2/4] PDOException
PDOException:
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:33
  at PDO->__construct()
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:33)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/doctrine/dbal/src/Logging/Driver.php:34)
  at Doctrine\DBAL\Logging\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
     (vendor/doctrine/dbal/src/Connection.php:383)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1692)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1087)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:285)
  at Contao\Database\Statement->query()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:237)
  at Contao\Database\Statement->execute()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:1096)
  at Contao\Model::find()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:962)
  at Contao\Model::findBy()
     (vendor/contao/core-bundle/src/Framework/Adapter.php:46)
  at Contao\CoreBundle\Framework\Adapter->__call()
     (vendor/contao/core-bundle/src/Routing/AbstractPageRouteProvider.php:72)
  at Contao\CoreBundle\Routing\AbstractPageRouteProvider->findCandidatePages()
     (vendor/contao/core-bundle/src/Routing/RouteProvider.php:63)
  at Contao\CoreBundle\Routing\RouteProvider->getRouteCollectionForRequest()
     (vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
  at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
     (vendor/contao/core-bundle/src/Routing/Matcher/LegacyMatcher.php:55)
  at Contao\CoreBundle\Routing\Matcher\LegacyMatcher->matchRequest()
     (vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
  at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:188)
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/index.php:44)                
[1/4] PDOException
PDOException:
PDO::__construct(): php_network_getaddresses: getaddrinfo for db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:33
  at PDO->__construct()
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:33)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/doctrine/dbal/src/Logging/Driver.php:34)
  at Doctrine\DBAL\Logging\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
     (vendor/doctrine/dbal/src/Connection.php:383)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1692)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1087)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:285)
  at Contao\Database\Statement->query()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Database/Statement.php:237)
  at Contao\Database\Statement->execute()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:1096)
  at Contao\Model::find()
     (vendor/contao/core-bundle/src/Resources/contao/library/Contao/Model.php:962)
  at Contao\Model::findBy()
     (vendor/contao/core-bundle/src/Framework/Adapter.php:46)
  at Contao\CoreBundle\Framework\Adapter->__call()
     (vendor/contao/core-bundle/src/Routing/AbstractPageRouteProvider.php:72)
  at Contao\CoreBundle\Routing\AbstractPageRouteProvider->findCandidatePages()
     (vendor/contao/core-bundle/src/Routing/RouteProvider.php:63)
  at Contao\CoreBundle\Routing\RouteProvider->getRouteCollectionForRequest()
     (vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
  at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
     (vendor/contao/core-bundle/src/Routing/Matcher/LegacyMatcher.php:55)
  at Contao\CoreBundle\Routing\Matcher\LegacyMatcher->matchRequest()
     (vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
  at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:188)
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/index.php:44)