Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
case 'InternalServerErrorHttpException':return new InternalServerErrorHttpException($exception->getMessage(), $exception);case 'NotFoundHttpException':return new NotFoundHttpException($exception->getMessage(), $exception);case 'ServiceUnavailableHttpException':return new ServiceUnavailableHttpException('', $exception->getMessage(), $exception);case 'UnauthorizedHttpException':
in
vendor/contao/core-bundle/src/EventListener/ExceptionConverterListener.php
->
convertToHttpException
(line 68)
if (null === $class) {return;}if (null !== ($httpException = $this->convertToHttpException($exception, $class))) {$event->setThrowable($httpException);}}private function getTargetClass(\Throwable $exception): ?string
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);}
Contao\ UnusedArgumentsException
}// Check whether all $_GET parameters have been used (see #4277)if ($this->blnCheckRequest && Input::hasUnusedGet()){throw new UnusedArgumentsException('Unused arguments: ' . implode(', ', Input::getUnusedGet()));}/** @var PageModel|null $objPage */global $objPage;
in
vendor/contao/core-bundle/src/Resources/contao/library/Contao/Template.php
->
compile
(line 354)
** @return Response The response object*/public function getResponse(){$this->compile();$response = new Response($this->strBuffer);$response->headers->set('Content-Type', $this->strContentType);$response->setCharset(System::getContainer()->getParameter('kernel.charset'));
in
vendor/contao/core-bundle/src/Resources/contao/classes/FrontendTemplate.php
->
getResponse
(line 85)
*/public function getResponse($blnCheckRequest=false, $blnForceCacheHeaders=false){$this->blnCheckRequest = $blnCheckRequest;$response = parent::getResponse();if ($blnForceCacheHeaders || 0 === strncmp('fe_', $this->strTemplate, 3)){return $this->setCacheHeaders($response);}
in
vendor/contao/core-bundle/src/Resources/contao/pages/PageRegular.php
->
getResponse
(line 63)
*/public function getResponse($objPage, $blnCheckRequest=false){$this->prepare($objPage);$response = $this->Template->getResponse($blnCheckRequest);// Allow subrequests on this controller (fragments) to dynamically influence the Cache-Control header$response->headers->set(SubrequestCacheSubscriber::MERGE_CACHE_HEADER, true);// Finalize the response context so it cannot be used anymore
in
vendor/contao/core-bundle/src/Resources/contao/controllers/FrontendIndex.php
->
getResponse
(line 320)
}return $objResponse;}return $objHandler->getResponse($objPage, true);}// Render the error page (see #5570)catch (UnusedArgumentsException $e){
in
vendor/symfony/http-kernel/HttpKernel.php
->
renderPage
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
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 03:09:30 | 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 03:09:30 | deprecation |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 03:09:30 | 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 03:09:30 | 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 03:09:30 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "bc2443"
},
"request_uri": "https://dls.c5.bargon.net/_profiler/bc2443",
"method": "GET"
}
|
| INFO 03:09:30 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"charset": "utf8mb4",
"idle_connection_ttl": 600,
"host": "mysql.ballensiefen.host",
"port": 3306,
"user": "c3_dls",
"password": "<redacted>",
"driverOptions": {
"1002": "SET SESSION sql_mode=(SELECT CONCAT(@@sql_mode, ',TRADITIONAL'))",
"1013": false
},
"defaultTableOptions": {
"charset": "utf8mb4",
"collation": "utf8mb4_unicode_ci",
"engine": "InnoDB",
"row_format": "DYNAMIC",
"collate": "utf8mb4_unicode_ci"
},
"dbname": "c3_dls"
}
}
|
| DEBUG 03:09:30 | doctrine |
Executing query: SELECT templates FROM tl_theme WHERE templates != '' {
"sql": "SELECT templates FROM tl_theme WHERE templates != ''"
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.13: Using ScopeMatcher::isFrontendMasterRequest() has been deprecated and will no longer work in Contao 5.0. Use ScopeMatcher::isFrontendMainRequest() instead. {
"exception": {}
}
|
| INFO 03:09:30 | 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 03:09:30 | 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 03:09:30 | 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 03:09:30 | 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 03:09:30 | 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 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespaces()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespaces()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespaces()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addNamespace()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClasses()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.2: Using "Contao\ClassLoader::addClass()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "Contao\ModuleLoader::getActive()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "Contao\ModuleLoader::getActive()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "Contao\ModuleLoader::getActive()" has been deprecated and will no longer work in Contao 5.0. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using "array_insert()" has been deprecated and will no longer work in Contao 5.0. Use "Contao\ArrayUtil::arrayInsert()" instead. {
"exception": {}
}
|
| DEBUG 03:09:30 | doctrine |
Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.`type`=? (parameters: {params}, types: {types}) {
"sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.`type`=?",
"params": {
"1": "root"
},
"types": {
"1": 2
}
}
|
| DEBUG 03:09:30 | doctrine |
Executing statement: SELECT tl_page.* FROM tl_page WHERE tl_page.`type`=? (parameters: {params}, types: {types}) {
"sql": "SELECT tl_page.* FROM tl_page WHERE tl_page.`type`=?",
"params": {
"1": "root"
},
"types": {
"1": 2
}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.9: The usage of a non fully qualified class name "CMSFile" for table "tl_cms_settings" as DataContainer name has been deprecated and will no longer work in Contao 5.0. Use the fully qualified class name instead, e.g. Contao\DC_Table::class. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.0: Using the "Contao\RequestToken" class has been deprecated and will no longer work in Contao 5.0. Use the Symfony CSRF service via the container instead. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.9: The usage of a non fully qualified class name "Table" for table "tl_linkingyou_redirecter_redirects" as DataContainer name has been deprecated and will no longer work in Contao 5.0. Use the fully qualified class name instead, e.g. Contao\DC_Table::class. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.9: The usage of a non fully qualified class name "Table" for table "tl_linkingyou_redirecter_redirects" as DataContainer name has been deprecated and will no longer work in Contao 5.0. Use the fully qualified class name instead, e.g. Contao\DC_Table::class. {
"exception": {}
}
|
| INFO 03:09:30 | deprecation |
User Deprecated: Since contao/core-bundle 4.9: The usage of a non fully qualified class name "Table" for table "tl_linkingyou_redirecter_redirects" as DataContainer name has been deprecated and will no longer work in Contao 5.0. Use the fully qualified class name instead, e.g. Contao\DC_Table::class. {
"exception": {}
}
|
| DEBUG 03:09:30 | doctrine |
Executing statement: SELECT tl_linkingyou_redirecter_redirects.*, j1.`id` AS destination_page__id, j1.`pid` AS destination_page__pid, j1.`sorting` AS destination_page__sorting, j1.`tstamp` AS destination_page__tstamp, j1.`title` AS destination_page__title, j1.`type` AS destination_page__type, j1.`alias` AS destination_page__alias, j1.`requireItem` AS destination_page__requireItem, j1.`routePriority` AS destination_page__routePriority, j1.`pageTitle` AS destination_page__pageTitle, j1.`language` AS destination_page__language, j1.`robots` AS destination_page__robots, j1.`description` AS destination_page__description, j1.`redirect` AS destination_page__redirect, j1.`alwaysForward` AS destination_page__alwaysForward, j1.`jumpTo` AS destination_page__jumpTo, j1.`redirectBack` AS destination_page__redirectBack, j1.`url` AS destination_page__url, j1.`target` AS destination_page__target, j1.`dns` AS destination_page__dns, j1.`staticFiles` AS destination_page__staticFiles, j1.`staticPlugins` AS destination_page__staticPlugins, j1.`fallback` AS destination_page__fallback, j1.`disableLanguageRedirect` AS destination_page__disableLanguageRedirect, j1.`favicon` AS destination_page__favicon, j1.`robotsTxt` AS destination_page__robotsTxt, j1.`maintenanceMode` AS destination_page__maintenanceMode, j1.`mailerTransport` AS destination_page__mailerTransport, j1.`enableCanonical` AS destination_page__enableCanonical, j1.`canonicalLink` AS destination_page__canonicalLink, j1.`canonicalKeepParams` AS destination_page__canonicalKeepParams, j1.`adminEmail` AS destination_page__adminEmail, j1.`dateFormat` AS destination_page__dateFormat, j1.`timeFormat` AS destination_page__timeFormat, j1.`datimFormat` AS destination_page__datimFormat, j1.`validAliasCharacters` AS destination_page__validAliasCharacters, j1.`useFolderUrl` AS destination_page__useFolderUrl, j1.`urlPrefix` AS destination_page__urlPrefix, j1.`urlSuffix` AS destination_page__urlSuffix, j1.`useSSL` AS destination_page__useSSL, j1.`autoforward` AS destination_page__autoforward, j1.`protected` AS destination_page__protected, j1.`groups` AS destination_page__groups, j1.`includeLayout` AS destination_page__includeLayout, j1.`layout` AS destination_page__layout, j1.`subpageLayout` AS destination_page__subpageLayout, j1.`includeCache` AS destination_page__includeCache, j1.`cache` AS destination_page__cache, j1.`alwaysLoadFromCache` AS destination_page__alwaysLoadFromCache, j1.`clientCache` AS destination_page__clientCache, j1.`includeChmod` AS destination_page__includeChmod, j1.`cuser` AS destination_page__cuser, j1.`cgroup` AS destination_page__cgroup, j1.`chmod` AS destination_page__chmod, j1.`noSearch` AS destination_page__noSearch, j1.`cssClass` AS destination_page__cssClass, j1.`sitemap` AS destination_page__sitemap, j1.`hide` AS destination_page__hide, j1.`guests` AS destination_page__guests, j1.`tabindex` AS destination_page__tabindex, j1.`accesskey` AS destination_page__accesskey, j1.`published` AS destination_page__published, j1.`start` AS destination_page__start, j1.`stop` AS destination_page__stop, j1.`enforceTwoFactor` AS destination_page__enforceTwoFactor, j1.`twoFactorJumpTo` AS destination_page__twoFactorJumpTo, j1.`mobileLayout` AS destination_page__mobileLayout, j1.`dlh_googlemaps_apikey` AS destination_page__dlh_googlemaps_apikey, j1.`catalogUseMaster` AS destination_page__catalogUseMaster, j1.`catalogShowInBreadcrumb` AS destination_page__catalogShowInBreadcrumb, j1.`catalogUseChangeLanguage` AS destination_page__catalogUseChangeLanguage, j1.`catalogUseRouting` AS destination_page__catalogUseRouting, j1.`catalogRoutingParameter` AS destination_page__catalogRoutingParameter, j1.`catalogSetAutoItem` AS destination_page__catalogSetAutoItem, j1.`catalogRouting` AS destination_page__catalogRouting, j1.`catalogChangeLanguageTable` AS destination_page__catalogChangeLanguageTable, j1.`catalogMasterTable` AS destination_page__catalogMasterTable, j1.`catalogRoutingTable` AS destination_page__catalogRoutingTable, j1.`canonicalType` AS destination_page__canonicalType, j1.`canonicalJumpTo` AS destination_page__canonicalJumpTo, j1.`canonicalWebsite` AS destination_page__canonicalWebsite, j1.`cms_root_license` AS destination_page__cms_root_license, j1.`cms_exclude_health_check` AS destination_page__cms_exclude_health_check, j1.`cms_root_key` AS destination_page__cms_root_key, j1.`cms_root_data` AS destination_page__cms_root_data, j1.`cms_root_sign` AS destination_page__cms_root_sign, j1.`cms_mi_views` AS destination_page__cms_mi_views, j1.`cms_mi_reset` AS destination_page__cms_mi_reset, j1.`iso_config` AS destination_page__iso_config, j1.`iso_store_id` AS destination_page__iso_store_id, j1.`iso_readerMode` AS destination_page__iso_readerMode, j1.`iso_readerJumpTo` AS destination_page__iso_readerJumpTo, j1.`iso_sitemapVariants` AS destination_page__iso_sitemapVariants FROM tl_linkingyou_redirecter_redirects LEFT JOIN tl_page j1 ON tl_linkingyou_redirecter_redirects.`destination_page`=j1.id WHERE tl_linkingyou_redirecter_redirects.source_url = ? AND tl_linkingyou_redirecter_redirects.published = ? LIMIT 0,1 (parameters: {params}, types: {types}) {
"sql": "SELECT tl_linkingyou_redirecter_redirects.*, j1.`id` AS destination_page__id, j1.`pid` AS destination_page__pid, j1.`sorting` AS destination_page__sorting, j1.`tstamp` AS destination_page__tstamp, j1.`title` AS destination_page__title, j1.`type` AS destination_page__type, j1.`alias` AS destination_page__alias, j1.`requireItem` AS destination_page__requireItem, j1.`routePriority` AS destination_page__routePriority, j1.`pageTitle` AS destination_page__pageTitle, j1.`language` AS destination_page__language, j1.`robots` AS destination_page__robots, j1.`description` AS destination_page__description, j1.`redirect` AS destination_page__redirect, j1.`alwaysForward` AS destination_page__alwaysForward, j1.`jumpTo` AS destination_page__jumpTo, j1.`redirectBack` AS destination_page__redirectBack, j1.`url` AS destination_page__url, j1.`target` AS destination_page__target, j1.`dns` AS destination_page__dns, j1.`staticFiles` AS destination_page__staticFiles, j1.`staticPlugins` AS destination_page__staticPlugins, j1.`fallback` AS destination_page__fallback, j1.`disableLanguageRedirect` AS destination_page__disableLanguageRedirect, j1.`favicon` AS destination_page__favicon, j1.`robotsTxt` AS destination_page__robotsTxt, j1.`maintenanceMode` AS destination_page__maintenanceMode, j1.`mailerTransport` AS destination_page__mailerTransport, j1.`enableCanonical` AS destination_page__enableCanonical, j1.`canonicalLink` AS destination_page__canonicalLink, j1.`canonicalKeepParams` AS destination_page__canonicalKeepParams, j1.`adminEmail` AS destination_page__adminEmail, j1.`dateFormat` AS destination_page__dateFormat, j1.`timeFormat` AS destination_page__timeFormat, j1.`datimFormat` AS destination_page__datimFormat, j1.`validAliasCharacters` AS destination_page__validAliasCharacters, j1.`useFolderUrl` AS destination_page__useFolderUrl, j1.`urlPrefix` AS destination_page__urlPrefix, j1.`urlSuffix` AS destination_page__urlSuffix, j1.`useSSL` AS destination_page__useSSL, j1.`autoforward` AS destination_page__autoforward, j1.`protected` AS destination_page__protected, j1.`groups` AS destination_page__groups, j1.`includeLayout` AS destination_page__includeLayout, j1.`layout` AS destination_page__layout, j1.`subpageLayout` AS destination_page__subpageLayout, j1.`includeCache` AS destination_page__includeCache, j1.`cache` AS destination_page__cache, j1.`alwaysLoadFromCache` AS destination_page__alwaysLoadFromCache, j1.`clientCache` AS destination_page__clientCache, j1.`includeChmod` AS destination_page__includeChmod, j1.`cuser` AS destination_page__cuser, j1.`cgroup` AS destination_page__cgroup, j1.`chmod` AS destination_page__chmod, j1.`noSearch` AS destination_page__noSearch, j1.`cssClass` AS destination_page__cssClass, j1.`sitemap` AS destination_page__sitemap, j1.`hide` AS destination_page__hide, j1.`guests` AS destination_page__guests, j1.`tabindex` AS destination_page__tabindex, j1.`accesskey` AS destination_page__accesskey, j1.`published` AS destination_page__published, j1.`start` AS destination_page__start, j1.`stop` AS destination_page__stop, j1.`enforceTwoFactor` AS destination_page__enforceTwoFactor, j1.`twoFactorJumpTo` AS destination_page__twoFactorJumpTo, j1.`mobileLayout` AS destination_page__mobileLayout, j1.`dlh_googlemaps_apikey` AS destination_page__dlh_googlemaps_apikey, j1.`catalogUseMaster` AS destination_page__catalogUseMaster, j1.`catalogShowInBreadcrumb` AS destination_page__catalogShowInBreadcrumb, j1.`catalogUseChangeLanguage` AS destination_page__catalogUseChangeLanguage, j1.`catalogUseRouting` AS destination_page__catalogUseRouting, j1.`catalogRoutingParameter` AS destination_page__catalogRoutingParameter, j1.`catalogSetAutoItem` AS destination_page__catalogSetAutoItem, j1.`catalogRouting` AS destination_page__catalogRouting, j1.`catalogChangeLanguageTable` AS destination_page__catalogChangeLanguageTable, j1.`catalogMasterTable` AS destination_page__catalogMasterTable, j1.`catalogRoutingTable` AS destination_page__catalogRoutingTable, j1.`canonicalType` AS destination_page__canonicalType, j1.`canonicalJumpTo` AS destination_page__canonicalJumpTo, j1.`canonicalWebsite` AS destination_page__canonicalWebsite, j1.`cms_root_license` AS destination_page__cms_root_license, j1.`cms_exclude_health_check` AS destination_page__cms_exclude_health_check, j1.`cms_root_key` AS destination_page__cms_root_key, j1.`cms_root_data` AS destination_page__cms_root_data, j1.`cms_root_sign` AS destination_page__cms_root_sign, j1.`cms_mi_views` AS destination_page__cms_mi_views, j1.`cms_mi_reset` AS destination_page__cms_mi_reset, j1.`iso_config` AS destination_page__iso_config, j1.`iso_store_id` AS destination_page__iso_store_id, j1.`iso_readerMode` AS destination_page__iso_readerMode, j1.`iso_readerJumpTo` AS destination_page__iso_readerJumpTo, j1.`iso_sitemapVariants` AS destination_page__iso_sitemapVariants FROM tl_linkingyou_redirecter_redirects LEFT JOIN tl_page j1 ON tl_linkingyou_redirecter_redirects.`destination_page`=j1.id WHERE tl_linkingyou_redirecter_redirects.source_url = ? AND tl_linkingyou_redirecter_redirects.published = ? LIMIT 0,1",
"params": {
"1": "/_profiler/bc2443",
"2": 1
},
"types": {
"1": 2,
"2": 2
}
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "MadeYourDay\RockSolidCustomElements\EventListener\AddAssetsListener::__invoke". {
"event": "kernel.request",
"listener": "MadeYourDay\\RockSolidCustomElements\\EventListener\\AddAssetsListener::__invoke"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "Contao\MobilePageLayoutBundle\EventListener\ToggleViewListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\MobilePageLayoutBundle\\EventListener\\ToggleViewListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "LinkingYou\ContaoRedirecter\EventListener\Redirecter::onKernelRequest". {
"event": "kernel.request",
"listener": "LinkingYou\\ContaoRedirecter\\EventListener\\Redirecter::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "numero2\StoreLocatorBundle\EventListener\KernelResponse\BackendAssetsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\StoreLocatorBundle\\EventListener\\KernelResponse\\BackendAssetsListener::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 03:09:30 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 03:09:30 | 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 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since contao/core-bundle 4.13: Using ScopeMatcher::isFrontendMasterRequest() has been deprecated and will no longer work in Contao 5.0. Use ScopeMatcher::isFrontendMainRequest() instead. {
"exception": {}
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "MadeYourDay\RockSolidCustomElements\EventListener\AddAssetsListener::__invoke". {
"event": "kernel.request",
"listener": "MadeYourDay\\RockSolidCustomElements\\EventListener\\AddAssetsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\MobilePageLayoutBundle\EventListener\ToggleViewListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\MobilePageLayoutBundle\\EventListener\\ToggleViewListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "LinkingYou\ContaoRedirecter\EventListener\Redirecter::onKernelRequest". {
"event": "kernel.request",
"listener": "LinkingYou\\ContaoRedirecter\\EventListener\\Redirecter::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\StoreLocatorBundle\EventListener\KernelResponse\BackendAssetsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\StoreLocatorBundle\\EventListener\\KernelResponse\\BackendAssetsListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. {
"exception": {}
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InitializeControllerListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InitializeControllerListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "numero2\MarketingSuiteBundle\EventListener\KernelResponse\HealthCheckHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "numero2\\MarketingSuiteBundle\\EventListener\\KernelResponse\\HealthCheckHeaderListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "numero2\MarketingSuiteBundle\EventListener\KernelResponse\TestHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "numero2\\MarketingSuiteBundle\\EventListener\\KernelResponse\\TestHeaderListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | 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 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\MobilePageLayoutBundle\EventListener\DisableCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\MobilePageLayoutBundle\\EventListener\\DisableCacheListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | 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 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | 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 03:09:31 | 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 03:09:31 | 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 03:09:31 | 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"
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since contao/core-bundle 4.13: Using ScopeMatcher::isFrontendMasterRequest() has been deprecated and will no longer work in Contao 5.0. Use ScopeMatcher::isFrontendMainRequest() instead. {
"exception": {}
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "MadeYourDay\RockSolidCustomElements\EventListener\AddAssetsListener::__invoke". {
"event": "kernel.request",
"listener": "MadeYourDay\\RockSolidCustomElements\\EventListener\\AddAssetsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\MobilePageLayoutBundle\EventListener\ToggleViewListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\MobilePageLayoutBundle\\EventListener\\ToggleViewListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "LinkingYou\ContaoRedirecter\EventListener\Redirecter::onKernelRequest". {
"event": "kernel.request",
"listener": "LinkingYou\\ContaoRedirecter\\EventListener\\Redirecter::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\StoreLocatorBundle\EventListener\KernelResponse\BackendAssetsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\StoreLocatorBundle\\EventListener\\KernelResponse\\BackendAssetsListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since twig/twig 3.9: Using the internal "twig_escape_filter" function is deprecated. {
"exception": {}
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InitializeControllerListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InitializeControllerListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MergeHttpHeadersListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MergeHttpHeadersListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "numero2\MarketingSuiteBundle\EventListener\KernelResponse\HealthCheckHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "numero2\\MarketingSuiteBundle\\EventListener\\KernelResponse\\HealthCheckHeaderListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "numero2\MarketingSuiteBundle\EventListener\KernelResponse\TestHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "numero2\\MarketingSuiteBundle\\EventListener\\KernelResponse\\TestHeaderListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | 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 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\BackendNoindexListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\BackendNoindexListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\InterestCohortListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\InterestCohortListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeBackendResponseUncacheableListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeBackendResponseUncacheableListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PageTrailCacheTagsListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PageTrailCacheTagsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\PreviewToolbarListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewToolbarListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\StoreRefererListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\StoreRefererListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\MobilePageLayoutBundle\EventListener\DisableCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\MobilePageLayoutBundle\\EventListener\\DisableCacheListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". {
"event": "kernel.response",
"listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | 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 03:09:31 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\ClearSessionDataListener::__invoke". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\ClearSessionDataListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::disableSymfonyAutoCacheControl". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::disableSymfonyAutoCacheControl"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelResponse"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Contao\CoreBundle\EventListener\MakeResponsePrivateListener::makeResponsePrivate". {
"event": "kernel.response",
"listener": "Contao\\CoreBundle\\EventListener\\MakeResponsePrivateListener::makeResponsePrivate"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 03:09:31 | 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 03:09:31 | 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 03:09:31 | 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 03:09:31 | 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 03:09:31 | 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"
}
|
| INFO 03:09:31 | deprecation |
User Deprecated: Since contao/core-bundle 4.13: Using ScopeMatcher::isFrontendMasterRequest() has been deprecated and will no longer work in Contao 5.0. Use ScopeMatcher::isFrontendMainRequest() instead. {
"exception": {}
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\SubrequestCacheSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\SubrequestCacheSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::setTranslatorLocale". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::setTranslatorLocale"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\CsrfTokenCookieSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\CsrfTokenCookieSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RefererIdListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RefererIdListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\RequestTokenListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\RequestTokenListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendLocaleListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendLocaleListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\LegacyLoginConstantsListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\LegacyLoginConstantsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\PreviewAuthenticationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\PreviewAuthenticationListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\ServiceUnavailableListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\ServiceUnavailableListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendPreviewRedirectListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendPreviewRedirectListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\BackendRebuildCacheMessageListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\BackendRebuildCacheMessageListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\InsecureInstallationListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\InsecureInstallationListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\Security\TwoFactorFrontendListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\Security\\TwoFactorFrontendListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\EventListener\UserSessionListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\EventListener\\UserSessionListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\CoreBundle\Twig\Loader\AutoRefreshTemplateHierarchyListener::__invoke". {
"event": "kernel.request",
"listener": "Contao\\CoreBundle\\Twig\\Loader\\AutoRefreshTemplateHierarchyListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "MadeYourDay\RockSolidCustomElements\EventListener\AddAssetsListener::__invoke". {
"event": "kernel.request",
"listener": "MadeYourDay\\RockSolidCustomElements\\EventListener\\AddAssetsListener::__invoke"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "Contao\MobilePageLayoutBundle\EventListener\ToggleViewListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Contao\\MobilePageLayoutBundle\\EventListener\\ToggleViewListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "LinkingYou\ContaoRedirecter\EventListener\Redirecter::onKernelRequest". {
"event": "kernel.request",
"listener": "LinkingYou\\ContaoRedirecter\\EventListener\\Redirecter::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\StoreLocatorBundle\EventListener\KernelResponse\BackendAssetsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\StoreLocatorBundle\\EventListener\\KernelResponse\\BackendAssetsListener::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.request" to listener "numero2\TagsBundle\EventSubscriber\KernelRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "numero2\\TagsBundle\\EventSubscriber\\KernelRequestSubscriber::onKernelRequest"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 03:09:31 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 03:09:31 | 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:
Unused arguments: auto_item
at vendor/contao/core-bundle/src/EventListener/ExceptionConverterListener.php:97
at Contao\CoreBundle\EventListener\ExceptionConverterListener->convertToHttpException(object(UnusedArgumentsException), 'NotFoundHttpException')
(vendor/contao/core-bundle/src/EventListener/ExceptionConverterListener.php:68)
at Contao\CoreBundle\EventListener\ExceptionConverterListener->__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), 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(UnusedArgumentsException), 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)
|
|
[1/2]
UnusedArgumentsException
|
|---|
Contao\UnusedArgumentsException:
Unused arguments: auto_item
at vendor/contao/core-bundle/src/Resources/contao/classes/FrontendTemplate.php:144
at Contao\FrontendTemplate->compile()
(vendor/contao/core-bundle/src/Resources/contao/library/Contao/Template.php:354)
at Contao\Template->getResponse()
(vendor/contao/core-bundle/src/Resources/contao/classes/FrontendTemplate.php:85)
at Contao\FrontendTemplate->getResponse(true)
(vendor/contao/core-bundle/src/Resources/contao/pages/PageRegular.php:63)
at Contao\PageRegular->getResponse(object(PageModel), true)
(vendor/contao/core-bundle/src/Resources/contao/controllers/FrontendIndex.php:320)
at Contao\FrontendIndex->renderPage(object(PageModel))
(vendor/symfony/http-kernel/HttpKernel.php:163)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
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)
|