Exceptions
Exception
LogicException
}private function assertInitialized(): void{if (null === $this->tokens) {throw new \LogicException('MemoryTokenStorage must not be accessed before it was initialized.');}}}
in
vendor/contao/core-bundle/src/Csrf/MemoryTokenStorage.php
->
assertInitialized
(line 47)
$this->tokens[$tokenId] = $token;}public function hasToken(string $tokenId): bool{$this->assertInitialized();return !empty($this->tokens[$tokenId]);}public function removeToken(string $tokenId): ?string
in
vendor/symfony/security-csrf/CsrfTokenManager.php
->
hasToken
(line 72)
* {@inheritdoc}*/public function getToken(string $tokenId){$namespacedId = $this->getNamespace().$tokenId;if ($this->storage->hasToken($namespacedId)) {$value = $this->storage->getToken($namespacedId);} else {$value = $this->generator->generateToken();$this->storage->setToken($namespacedId, $value);
in
vendor/contao/core-bundle/src/Csrf/ContaoCsrfTokenManager.php
->
getToken
(line 62)
return $this->usedTokenValues;}public function getToken($tokenId): CsrfToken{$this->tokenCache[$tokenId] ??= parent::getToken($tokenId);$this->usedTokenValues[] = $this->tokenCache[$tokenId]->getValue();return $this->tokenCache[$tokenId];}
in
vendor/contao/core-bundle/src/Csrf/ContaoCsrfTokenManager.php
->
getToken
(line 117)
{if (null === $this->defaultTokenName) {throw new \RuntimeException('The Contao CSRF token manager was not initialized with a default token name.');}return $this->getToken($this->defaultTokenName)->getValue();}public function reset(): void{$this->usedTokenValues = [];
in
vendor/contao/core-bundle/src/Resources/contao/library/Contao/RequestToken.php
->
getDefaultTokenValue
(line 54)
*/public static function get(){$container = System::getContainer();return $container->get('contao.csrf.token_manager')->getDefaultTokenValue();}/*** Validate a token*
in
vendor/contao/core-bundle/src/Framework/Adapter.php
::
get
(line 46)
** @return mixed*/public function __call(string $name, array $arguments){return \call_user_func_array([$this->class, $name], $arguments);}}
in
vendor/contao/core-bundle/src/Framework/ContaoFramework.php
->
__call
(line 421)
{$requestToken = $this->getAdapter(RequestToken::class);// Deprecated since Contao 4.0, to be removed in Contao 5.0if (!\defined('REQUEST_TOKEN')) {\define('REQUEST_TOKEN', 'cli' === \PHP_SAPI ? null : $requestToken->get());}}private function iniSet(string $key, string $value): void{
in
vendor/contao/core-bundle/src/Framework/ContaoFramework.php
->
handleRequestToken
(line 308)
Input::initialize();TemplateLoader::initialize();$this->setTimezone();$this->triggerInitializeSystemHook();$this->handleRequestToken();}private function includeHelpers(): void{require __DIR__.'/../Resources/contao/helper/functions.php';
in
vendor/contao/core-bundle/src/Framework/ContaoFramework.php
->
initializeFramework
(line 122)
$this->isFrontend = $isFrontend;$this->request = $this->requestStack->getMainRequest();$this->setConstants();$this->initializeFramework();if (!$this->legacyRouting) {$this->throwOnLegacyRoutingHooks();}}
in
vendor/contao/core-bundle/src/EventListener/PrettyErrorScreenListener.php
->
initialize
(line 151)
}$processing = true;try {$this->framework->initialize(true);$request = $event->getRequest();$errorPage = $this->findErrorPage($type, $request);if (null === $errorPage) {
in
vendor/contao/core-bundle/src/EventListener/PrettyErrorScreenListener.php
->
renderErrorScreenByType
(line 107)
case $exception instanceof UnauthorizedHttpException:$this->renderErrorScreenByType(401, $event);break;case $exception instanceof AccessDeniedHttpException:$this->renderErrorScreenByType(403, $event);break;case $exception instanceof NotFoundHttpException:$this->renderErrorScreenByType(404, $event);break;
in
vendor/contao/core-bundle/src/EventListener/PrettyErrorScreenListener.php
->
handleException
(line 84)
if (!AcceptHeader::fromString($request->headers->get('Accept'))->has('text/html')) {return;}$this->handleException($event);}private function handleException(ExceptionEvent $event): void{$exception = $event->getThrowable();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
__invoke
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 223)
* @throws \Exception*/private function handleThrowable(\Throwable $e, Request $request, int $type): Response{$event = new ExceptionEvent($this, $request, $type, $e);$this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);// a listener might have replaced the exception$e = $event->getThrowable();if (!$event->hasResponse()) {
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleThrowable
(line 86)
$this->finishRequest($request, $type);throw $e;}return $this->handleThrowable($e, $request, $type);} finally {$this->requestStack->pop();}}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$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 17:00:57 | 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 "Hhcom\CreativeContaoBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 17:00:57 | 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 "Terminal42\FineUploaderBundle\ContaoManager\Plugin" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 17:00:57 | 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 17:00:57 | deprecation |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 17:00:57 | 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 17:00:57 | 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 17:00:57 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5d2d5e"
},
"request_uri": "https://www.teilehandel-stadler.at/_profiler/5d2d5e?panel=exception",
"method": "GET"
}
|
| INFO 17:00:57 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"charset": "utf8mb4",
"idle_connection_ttl": 600,
"host": "10.35.249.143",
"port": 3306,
"user": "k62559_default",
"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": "k62559_teilehandelstadler"
}
}
|
| DEBUG 17:00:57 | doctrine |
Executing query: SELECT templates FROM tl_theme WHERE templates != '' {
"sql": "SELECT templates FROM tl_theme WHERE templates != ''"
}
|
| INFO 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. {
"exception": {}
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InitializeControllerListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InitializeControllerListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 17:00:58 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InitializeControllerListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InitializeControllerListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | 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 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 17:00:58 | 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
|
LogicException
|
|---|
LogicException:
MemoryTokenStorage must not be accessed before it was initialized.
at vendor/contao/core-bundle/src/Csrf/MemoryTokenStorage.php:91
at Contao\CoreBundle\Csrf\MemoryTokenStorage->assertInitialized()
(vendor/contao/core-bundle/src/Csrf/MemoryTokenStorage.php:47)
at Contao\CoreBundle\Csrf\MemoryTokenStorage->hasToken('https-contao_csrf_token')
(vendor/symfony/security-csrf/CsrfTokenManager.php:72)
at Symfony\Component\Security\Csrf\CsrfTokenManager->getToken('contao_csrf_token')
(vendor/contao/core-bundle/src/Csrf/ContaoCsrfTokenManager.php:62)
at Contao\CoreBundle\Csrf\ContaoCsrfTokenManager->getToken('contao_csrf_token')
(vendor/contao/core-bundle/src/Csrf/ContaoCsrfTokenManager.php:117)
at Contao\CoreBundle\Csrf\ContaoCsrfTokenManager->getDefaultTokenValue()
(vendor/contao/core-bundle/src/Resources/contao/library/Contao/RequestToken.php:54)
at Contao\RequestToken::get()
(vendor/contao/core-bundle/src/Framework/Adapter.php:46)
at Contao\CoreBundle\Framework\Adapter->__call('get', array())
(vendor/contao/core-bundle/src/Framework/ContaoFramework.php:421)
at Contao\CoreBundle\Framework\ContaoFramework->handleRequestToken()
(vendor/contao/core-bundle/src/Framework/ContaoFramework.php:308)
at Contao\CoreBundle\Framework\ContaoFramework->initializeFramework()
(vendor/contao/core-bundle/src/Framework/ContaoFramework.php:122)
at Contao\CoreBundle\Framework\ContaoFramework->initialize(true)
(vendor/contao/core-bundle/src/EventListener/PrettyErrorScreenListener.php:151)
at Contao\CoreBundle\EventListener\PrettyErrorScreenListener->renderErrorScreenByType(403, object(ExceptionEvent))
(vendor/contao/core-bundle/src/EventListener/PrettyErrorScreenListener.php:107)
at Contao\CoreBundle\EventListener\PrettyErrorScreenListener->handleException(object(ExceptionEvent))
(vendor/contao/core-bundle/src/EventListener/PrettyErrorScreenListener.php:84)
at Contao\CoreBundle\EventListener\PrettyErrorScreenListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
(vendor/symfony/http-kernel/HttpKernel.php:223)
at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(AccessDeniedHttpException), object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:86)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(web/index.php:44)
|