Exceptions
Exception
TypeError
if ($newsListPage = Utils::getNewsListPage()) return new RedirectResponse(Utils::getPageFrontendUrl($newsListPage), 302);else throw new PageNotFoundException('Page not found: ' . Environment::get('uri'));}$template->set('news', $objNews);$template->set('others', NewsCustomModel::searchNews([$objNews->pid], 0, 3, "", "date DESC", implode(",", unserialize($objNews->categories)) ?? "", [], [$objNews->id]) ?? []);$template->set('categories', NewsCategoryModel::findMultipleByIds(unserialize($objNews->categories) ?: []) ?: []);$template->set('figure', Controller::getContainer()->get('adct.image_helper')->getFigureObjectByUuid($objNews->singleSRC, '_news_single') ?? null);$contentElements = ContentModel::findBy("ptable = 'tl_news' AND pid", $objNews->id, ['order' => 'sorting'])?->fetchEach('id') ?? [];$strElements = implode("", array_map(fn($ce) => Controller::getContentElement($ce), $contentElements));
if ($newsListPage = Utils::getNewsListPage()) return new RedirectResponse(Utils::getPageFrontendUrl($newsListPage), 302);else throw new PageNotFoundException('Page not found: ' . Environment::get('uri'));}$template->set('news', $objNews);$template->set('others', NewsCustomModel::searchNews([$objNews->pid], 0, 3, "", "date DESC", implode(",", unserialize($objNews->categories)) ?? "", [], [$objNews->id]) ?? []);$template->set('categories', NewsCategoryModel::findMultipleByIds(unserialize($objNews->categories) ?: []) ?: []);$template->set('figure', Controller::getContainer()->get('adct.image_helper')->getFigureObjectByUuid($objNews->singleSRC, '_news_single') ?? null);$contentElements = ContentModel::findBy("ptable = 'tl_news' AND pid", $objNews->id, ['order' => 'sorting'])?->fetchEach('id') ?? [];$strElements = implode("", array_map(fn($ce) => Controller::getContentElement($ce), $contentElements));
in
vendor/contao/core-bundle/src/Controller/FrontendModule/AbstractFrontendModuleController.php
->
getResponse
(line 43)
$request->attributes->get('templateProperties', []),);$this->tagResponse($model);return $this->getResponse($template, $model, $request);}public static function getSubscribedServices(): array{$services = parent::getSubscribedServices();
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());}try {return $kernel->handle($request, $type, $catch);} finally {// restore global stateRequest::setTrustedProxies($trustedProxies, $trustedHeaderSet);}}
in
vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php
::
handle
(line 78)
$subRequest->attributes->add($reference->attributes);}$level = ob_get_level();try {return SubRequestHandler::handle($this->kernel, $subRequest, HttpKernelInterface::SUB_REQUEST, false);} catch (\Exception $e) {// we dispatch the exception event to trigger the logging// the response that comes back is ignoredif (isset($options['ignore_errors']) && $options['ignore_errors'] && $this->dispatcher) {$event = new ExceptionEvent($this->kernel, $request, HttpKernelInterface::SUB_REQUEST, $e);
in
vendor/symfony/http-kernel/Fragment/FragmentHandler.php
->
render
(line 83)
if (!$request = $this->requestStack->getCurrentRequest()) {throw new \LogicException('Rendering a fragment can only be done when handling a Request.');}return $this->deliver($this->renderers[$renderer]->render($uri, $request, $options));}/*** Delivers the Response as a string.*
in
vendor/contao/core-bundle/src/Fragment/FragmentHandler.php
->
render
(line 68)
if (!isset($this->initialized[$renderer]) && $this->renderers->has($renderer)) {$this->addRenderer($this->renderers->get($renderer));$this->initialized[$renderer] = true;}return parent::render($uri, $renderer, $config->getOptions());}protected function deliver(Response $response): string|null{try {
in
vendor/contao/core-bundle/contao/modules/ModuleProxy.php
->
render
(line 61)
if ($request && System::getContainer()->get('contao.routing.scope_matcher')->isBackendRequest($request)){$this->reference->setBackendScope();}return System::getContainer()->get('fragment.handler')->render($this->reference);}public function __set($strKey, $varValue){$this->reference->attributes['templateProperties'][$strKey] = $varValue;
in
vendor/contao/core-bundle/contao/library/Contao/Controller.php
->
generate
(line 406)
}$objRow->typePrefix = 'mod_';$objModule = new $strClass($objRow, $strColumn);$strBuffer = $objModule->generate();// HOOK: add custom logicif (isset($GLOBALS['TL_HOOKS']['getFrontendModule']) && \is_array($GLOBALS['TL_HOOKS']['getFrontendModule'])){foreach ($GLOBALS['TL_HOOKS']['getFrontendModule'] as $callback)
in
vendor/contao/core-bundle/contao/elements/ContentModule.php
::
getFrontendModule
(line 59)
if ($this->objModel !== null){System::getContainer()->get('contao.cache.entity_tags')->tagWithModelInstance($this->objModel);}return Controller::getFrontendModule($objModel, $this->strColumn);}/*** Generate the content element*/
in
vendor/contao/core-bundle/contao/library/Contao/Controller.php
->
generate
(line 624)
}$objElement = new $strClass($objRow, $strColumn);}$strBuffer = $objElement->generate();// HOOK: add custom logicif (isset($GLOBALS['TL_HOOKS']['getContentElement']) && \is_array($GLOBALS['TL_HOOKS']['getContentElement'])){foreach ($GLOBALS['TL_HOOKS']['getContentElement'] as $callback)
in
vendor/contao/core-bundle/contao/modules/ModuleArticle.php
::
getContentElement
(line 205)
{$arrElements[] = $this->arrPreloadedContentElements[$objCte->id];}else{$arrElements[] = $this->getContentElement($objCte->current(), $this->strColumn);}}}$this->Template->teaser = $this->teaser;
in
vendor/contao/core-bundle/contao/modules/Module.php
->
compile
(line 214)
public function generate(){$this->Template = new FrontendTemplate($this->strTemplate);$this->Template->setData($this->arrData);$this->compile();// Do not change this order (see #6191)$this->Template->style = !empty($this->arrStyle) ? implode(' ', $this->arrStyle) : '';$this->Template->class = trim('mod_' . $this->type . ' ' . ($this->cssID[1] ?? ''));$this->Template->cssID = !empty($this->cssID[0]) ? ' id="' . $this->cssID[0] . '"' : '';
in
vendor/contao/core-bundle/contao/modules/ModuleArticle.php
->
generate
(line 71)
if ($this->objModel !== null){System::getContainer()->get('contao.cache.entity_tags')->tagWithModelInstance($this->objModel);}return parent::generate();}/*** @internal*/
in
vendor/contao/core-bundle/contao/library/Contao/Controller.php
->
generate
(line 499)
}$objArticle = new ModuleArticle($objRow, $strColumn);$objArticle->setPreloadedContentElements($arrPreloadedContentElements);$strBuffer = $objArticle->generate($blnIsInsertTag);// Disable indexing if protectedif ($objArticle->protected && !preg_match('/^\s*<!-- indexer::stop/', $strBuffer)){$groups = StringUtil::deserialize($objArticle->groups, true);
in
vendor/contao/core-bundle/contao/library/Contao/Controller.php
::
getArticle
(line 357)
$return = '';$blnMultiMode = $objArticles->count() > 1;while ($objArticles->next()){$return .= static::getArticle($objArticles->current(), $blnMultiMode, false, $strColumn, $arrPreloadedContentElements);}return $return;}
in
vendor/contao/core-bundle/contao/pages/PageRegular.php
::
getFrontendModule
(line 186)
if ($objLayout->rows != '2rwf' && $objLayout->rows != '3rw' && $arrModule['col'] == 'footer'){continue;}$this->Template->{$arrModule['col']} .= $arrPreloadedModules[$arrModule['col']][$arrModule['mod']->id ?? $arrModule['mod']] ?? $this->getFrontendModule($arrModule['mod'], $arrModule['col'], $arrPreloadedContentElements);}else{if (!isset($arrCustomSections[$arrModule['col']])){
in
vendor/contao/core-bundle/contao/pages/PageRegular.php
->
prepare
(line 47)
** @return Response*/public function getResponse($objPage, $blnCheckRequest=false){$this->prepare($objPage);$response = $this->Template->getResponse($blnCheckRequest);// Allow subrequests on this controller (fragments) to dynamically influence the Cache-Control header$response->headers->set(SubrequestCacheSubscriber::MERGE_CACHE_HEADER, true);
in
vendor/contao/core-bundle/contao/controllers/FrontendIndex.php
->
getResponse
(line 66)
try{$pageType = $GLOBALS['TL_PTY'][$objPage->type] ?? PageRegular::class;$objHandler = new $pageType();return $objHandler->getResponse($objPage, true);}// Render the error page (see #5570)catch (UnusedArgumentsException $e){
in
vendor/symfony/http-kernel/HttpKernel.php
->
renderPage
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
$loader = require __DIR__.'/../vendor/autoload.php';$request = Request::createFromGlobals();$kernel = ContaoKernel::fromRequest(dirname(__DIR__), $request);$response = $kernel->handle($request);$response->send();if ($kernel instanceof TerminableInterface) {$kernel->terminate($request, $response);}
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Bundle\BundlePluginInterface::getBundles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoFormBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoFormBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Bundle\BundlePluginInterface::getBundles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoGlossaryBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoGlossaryBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Bundle\BundlePluginInterface::getBundles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoMailjetBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoMailjetBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Bundle\BundlePluginInterface::getBundles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoRelationWizardBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoRelationWizardBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoSeoBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Bundle\BundlePluginInterface::getBundles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoSvgSpriteBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContaoSvgSpriteBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Method "Contao\ManagerPlugin\Routing\RoutingPluginInterface::getRouteCollection()" might add "?RouteCollection" as a native return type declaration in the future. Do the same in implementation "Addictic\ContentElementBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 16:20:27 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://addictic.ci-com.fr/_profiler/latest?ip=213.139.9.136&type=request",
"method": "GET"
}
|
| INFO 16:20:27 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"charset": "utf8mb4",
"idle_connection_ttl": 600,
"host": "127.0.0.1",
"port": 3306,
"user": "x85sfw_adct",
"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": "x85sfw_addictic"
}
}
|
| DEBUG 16:20:27 | doctrine |
Executing query: SELECT templates FROM tl_theme WHERE templates != '' {
"sql": "SELECT templates FROM tl_theme WHERE templates != ''"
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. {
"exception": {}
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by Contao_ManagerBundle_HttpKernel_ContaoKernelDevDebugContainer.php:3584, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) {
"exception": {}
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | deprecation |
User Deprecated: Since twig/twig 3.15: Using the "deprecated", "deprecating_package", and "alternative" options is deprecated, pass a "deprecation_info" one instead. {
"exception": {}
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. {
"exception": {}
}
|
| INFO 16:20:27 | deprecation |
User Deprecated: Since nelmio/security-bundle 3.4.0: The "Nelmio\SecurityBundle\EventListener\XssProtectionListener" class is deprecated, use Content Security Policy without allowing "unsafe-inline" scripts instead. {
"exception": {}
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | 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 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\TransportSecurityHeaderListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\TransportSecurityHeaderListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "ContainerS9XuwUd\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse". {
"event": "kernel.response",
"listener": "ContainerS9XuwUd\\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | 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 16:20:27 | 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 16:20:27 | 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 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | 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"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | 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 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\TransportSecurityHeaderListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\TransportSecurityHeaderListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "ContainerS9XuwUd\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse". {
"event": "kernel.response",
"listener": "ContainerS9XuwUd\\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
|
| DEBUG 16:20:27 | 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 16:20:27 | 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 16:20:27 | 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 16:20:27 | 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 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 16:20:27 | 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 Trace
|
TypeError
|
|---|
TypeError:
implode(): Argument #2 ($array) must be of type ?array, false given
at src/Controller/FrontendModule/SingleNewsModuleController.php:38
at implode(',', false)
(src/Controller/FrontendModule/SingleNewsModuleController.php:38)
at App\Controller\FrontendModule\SingleNewsModuleController->getResponse(object(FragmentTemplate), object(ModuleModel), object(Request))
(vendor/contao/core-bundle/src/Controller/FrontendModule/AbstractFrontendModuleController.php:43)
at Contao\CoreBundle\Controller\FrontendModule\AbstractFrontendModuleController->__invoke(object(Request), object(ModuleModel), 'main', null)
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
(vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 2, false)
(vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php:78)
at Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render('/_fragment?_path=_format%3Dhtml%26_locale%3Dfr_FR%26_controller%3Dcontao.frontend_module.single_news', object(Request), array('ignore_errors' => false))
(vendor/symfony/http-kernel/Fragment/FragmentHandler.php:83)
at Symfony\Component\HttpKernel\Fragment\FragmentHandler->render(object(FrontendModuleReference), 'forward', array('ignore_errors' => false))
(vendor/contao/core-bundle/src/Fragment/FragmentHandler.php:68)
at Contao\CoreBundle\Fragment\FragmentHandler->render(object(FrontendModuleReference))
(vendor/contao/core-bundle/contao/modules/ModuleProxy.php:61)
at Contao\ModuleProxy->generate()
(vendor/contao/core-bundle/contao/library/Contao/Controller.php:406)
at Contao\Controller::getFrontendModule(object(ModuleModel), 'main')
(vendor/contao/core-bundle/contao/elements/ContentModule.php:59)
at Contao\ContentModule->generate()
(vendor/contao/core-bundle/contao/library/Contao/Controller.php:624)
at Contao\Controller::getContentElement(object(ContentModel), 'main')
(vendor/contao/core-bundle/contao/modules/ModuleArticle.php:205)
at Contao\ModuleArticle->compile()
(vendor/contao/core-bundle/contao/modules/Module.php:214)
at Contao\Module->generate()
(vendor/contao/core-bundle/contao/modules/ModuleArticle.php:71)
at Contao\ModuleArticle->generate(false)
(vendor/contao/core-bundle/contao/library/Contao/Controller.php:499)
at Contao\Controller::getArticle(object(ArticleModel), false, false, 'main', array())
(vendor/contao/core-bundle/contao/library/Contao/Controller.php:357)
at Contao\Controller::getFrontendModule('0', 'main', array())
(vendor/contao/core-bundle/contao/pages/PageRegular.php:186)
at Contao\PageRegular->prepare(object(PageModel))
(vendor/contao/core-bundle/contao/pages/PageRegular.php:47)
at Contao\PageRegular->getResponse(object(PageModel), true)
(vendor/contao/core-bundle/contao/controllers/FrontendIndex.php:66)
at Contao\FrontendIndex->renderPage(object(PageModel))
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:197)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(public/index.php:42)
|