Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#2072 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {
$message .= \sprintf(' (from "%s")', $referer);
}
throw new NotFoundHttpException($message, $e);
} catch (MethodNotAllowedException $e) {
$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$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 220)
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 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
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 157)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
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);
}
Symfony\Component\Routing\Exception\ ResourceNotFoundException
in
vendor/symfony-cmf/routing/src/ChainRouter.php
(line 180)
$info = $request
? "this request\n$request"
: "url '$pathinfo'";
throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
}
/**
* {@inheritdoc}
*
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 134)
*
* Loops through all routes and tries to match the passed request.
*/
public function matchRequest(Request $request): array
{
return $this->doMatch($request->getPathInfo(), $request);
}
/**
* Loops through all routers and tries to match the passed request or url.
*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 105)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$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 220)
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 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
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 157)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
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 01:01:07 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://cn.uat.vs-web.net/_profiler/latest?type=request", "method": "GET" } |
INFO 01:01:07 | doctrine |
Connecting with parameters {params} { "params": { "driver": "pdo_mysql", "charset": "utf8mb4", "idle_connection_ttl": 600, "host": "db_contao", "port": 3306, "user": "app", "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": "contao" } } |
DEBUG 01:01:07 | doctrine |
Executing query: SELECT templates FROM tl_theme WHERE templates != '' { "sql": "SELECT templates FROM tl_theme WHERE templates != ''" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "VerderScientific\ContaoFutureViewBundle\Services\FutureViewService::__invoke". { "event": "kernel.request", "listener": "VerderScientific\\ContaoFutureViewBundle\\Services\\FutureViewService::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
INFO 01:01:07 | 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:3092, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) { "exception": {} } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "VerderScientific\ContaoFutureViewBundle\Services\FutureViewService::__invoke". { "event": "kernel.request", "listener": "VerderScientific\\ContaoFutureViewBundle\\Services\\FutureViewService::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. { "exception": {} } |
INFO 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\TransportSecurityHeaderListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\TransportSecurityHeaderListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "ContainerE5V2fWr\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse". { "event": "kernel.response", "listener": "ContainerE5V2fWr\\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse" } |
DEBUG 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "VerderScientific\ContaoFutureViewBundle\Services\FutureViewService::__invoke". { "event": "kernel.request", "listener": "VerderScientific\\ContaoFutureViewBundle\\Services\\FutureViewService::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\TransportSecurityHeaderListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\TransportSecurityHeaderListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "ContainerE5V2fWr\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse". { "event": "kernel.response", "listener": "ContainerE5V2fWr\\TrustedCookieResponseListenerGhost2528a3a::onKernelResponse" } |
DEBUG 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse" } |
DEBUG 01:01:07 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". { "event": "kernel.response", "listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\ManagerBundle\Monolog\RequestProcessor::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\ManagerBundle\\Monolog\\RequestProcessor::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PageAccessListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PageAccessListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". { "event": "kernel.request", "listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "VerderScientific\ContaoFutureViewBundle\Services\FutureViewService::__invoke". { "event": "kernel.request", "listener": "VerderScientific\\ContaoFutureViewBundle\\Services\\FutureViewService::__invoke" } |
DEBUG 01:01:07 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 01:01:07 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 01:01:07 | 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 01:01:07 | 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 01:01:07 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
Stack Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET https://br.uat.vs-web.net/.git/config" at vendor/symfony/http-kernel/EventListener/RouterListener.php:127 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/http-kernel/HttpKernel.php:157) 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) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: None of the routers in the chain matched this request GET /.git/config HTTP/1.1 Accept-Charset: utf-8 Accept-Encoding: gzip Host: br.uat.vs-web.net User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15 X-Forwarded-For: 16.16.98.159 X-Forwarded-Host: br.uat.vs-web.net X-Forwarded-Port: 443 X-Forwarded-Proto: https X-Forwarded-Server: d046546bf480 X-Php-Ob-Level: 0 X-Real-Ip: 16.16.98.159 at vendor/symfony-cmf/routing/src/ChainRouter.php:180 at Symfony\Cmf\Component\Routing\ChainRouter->doMatch('/.git/config', object(Request)) (vendor/symfony-cmf/routing/src/ChainRouter.php:134) at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest(object(Request)) (vendor/symfony/http-kernel/EventListener/RouterListener.php:105) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request') (vendor/symfony/http-kernel/HttpKernel.php:157) 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) |