Redirect 301 redirect from GET @document_3 (74ede4)

Error 500 Internal Server Error

GET https://demo.pimcoreui.studioemma.com/sitemap.xml

Forwarded to ErrorController (670f4a)

Exceptions

Parameter "productname" for route "shop-detail.en" must match "[\w-]+" ("" given) to generate a corresponding URL.

Exception

Symfony\Component\Routing\Exception\ InvalidParameterException

  1.                 if (!$optional || $important || !\array_key_exists($varName$defaults) || (null !== $mergedParams[$varName] && (string) $mergedParams[$varName] !== (string) $defaults[$varName])) {
  2.                     // check requirement (while ignoring look-around patterns)
  3.                     if (null !== $this->strictRequirements && !preg_match('#^'.preg_replace('/\(\?(?:=|<=|!|<!)((?:[^()\\\\]+|\\\\.|\((?1)\))*)\)/'''$token[2]).'$#i'.(empty($token[4]) ? '' 'u'), $mergedParams[$token[3]] ?? '')) {
  4.                         if ($this->strictRequirements) {
  5.                             throw new InvalidParameterException(strtr($message, ['{parameter}' => $varName'{route}' => $name'{expected}' => $token[2], '{given}' => $mergedParams[$varName]]));
  6.                         }
  7.                         $this->logger?->error($message, ['parameter' => $varName'route' => $name'expected' => $token[2], 'given' => $mergedParams[$varName]]);
  8.                         return '';
  1.             } elseif (!isset($parameters['_locale'])) {
  2.                 $parameters['_locale'] = $defaults['_locale'];
  3.             }
  4.         }
  5.         return $this->doGenerate($variables$defaults$requirements$tokens$parameters$name$referenceType$hostTokens$requiredSchemes);
  6.     }
  7. }
in vendor/symfony/routing/Router.php -> generate (line 221)
  1.         $this->configCacheFactory $configCacheFactory;
  2.     }
  3.     public function generate(string $name, array $parameters = [], int $referenceType self::ABSOLUTE_PATH): string
  4.     {
  5.         return $this->getGenerator()->generate($name$parameters$referenceType);
  6.     }
  7.     public function match(string $pathinfo): array
  8.     {
  9.         return $this->getMatcher()->match($pathinfo);
  1.             if ($name && !is_string($name) && !$router instanceof VersatileGeneratorInterface) {
  2.                 continue;
  3.             }
  4.             try {
  5.                 return $router->generate($name$parameters$referenceType);
  6.             } catch (RouteNotFoundException $e) {
  7.                 $hint $this->getErrorMessage($name$router$parameters);
  8.                 $debug[] = $hint;
  9.                 $this->logger->debug('Router '.get_class($router)." was unable to generate route. Reason: '$hint': ".$e->getMessage());
  10.             }
  1.             return $path;
  2.         }
  3.         if ($name !== null) {
  4.             return $this->generator->generate($name$parameters$referenceType);
  5.         }
  6.         return '';
  7.     }
  1.         // merge all parameters from request to parameters
  2.         if (!$reset && $this->requestHelper->hasMainRequest()) {
  3.             $urlOptions array_replace($this->requestHelper->getMainRequest()->query->all(), $urlOptions);
  4.         }
  5.         return $this->generateUrl($name$urlOptions$relative UrlGeneratorInterface::RELATIVE_PATH UrlGeneratorInterface::ABSOLUTE_PATH$encode);
  6.     }
  7.     /**
  8.      * Generate URL with support to only pass parameters ZF1 style (defaults to current route).
  9.      *
PimcoreUrl->__invoke() in src/Website/Tool/PimcoreUrl.php (line 36)
  1.         // merge all parameters from request to parameters
  2.         if (!$reset && $this->requestHelper->hasMainRequest()) {
  3.             $urlOptions array_replace($this->requestHelper->getMainRequest()->attributes->get('_route_params', []), $urlOptions);
  4.         }
  5.         return parent::__invoke($urlOptions$name$reset$encode$relative);
  6.     }
  7. }
PimcoreUrl->__invoke() in src/Website/LinkGenerator/ProductLinkGenerator.php (line 66)
  1.                 return current($object->getUrlSlug())->getSlug();
  2.             }
  3.             $locale $params['locale'] ?? null;
  4.             return $this->pimcoreUrl->__invoke(
  5.                 [
  6.                     'productname' => Text::toUrl($object->getOSName() ?? 'product'),
  7.                     'product' => $object->getId(),
  8.                     'path' => $this->getNavigationPath($object->getMainCategory(), $params['rootCategory'] ?? null$locale),
  9.                     'page' => null,
in vendor/pimcore/pimcore/models/DataObject/Service.php -> App\Website\LinkGenerator\{closure} (line 1994)
  1.     {
  2.         $backup DataObject::getGetInheritedValues();
  3.         DataObject::setGetInheritedValues($inheritValues);
  4.         try {
  5.             return $fn(...$fnArgs);
  6.         } finally {
  7.             DataObject::setGetInheritedValues($backup);
  8.         }
  9.     }
  10. }
Service::useInheritedValues() in src/Website/LinkGenerator/ProductLinkGenerator.php (line 59)
  1.      *
  2.      * @return string
  3.      */
  4.     protected function doGenerate($object$params): string
  5.     {
  6.         return DataObject\Service::useInheritedValues(true, function () use ($object$params) {
  7.             if (!empty($object->getUrlSlug())) {
  8.                 return current($object->getUrlSlug())->getSlug();
  9.             }
  10.             $locale $params['locale'] ?? null;
ProductLinkGenerator->doGenerate() in src/Website/LinkGenerator/ProductLinkGenerator.php (line 37)
  1.         if (isset($params['document']) && $params['document'] instanceof Document) {
  2.             $this->document $params['document'];
  3.         }
  4.         return $this->doGenerate($object$params);
  5.     }
  6.     /**
  7.      * @param ProductInterface $object
  8.      * @param array $params
ProductLinkGenerator->generate() in src/Sitemaps/ProductGenerator.php (line 58)
  1.                 continue;
  2.             }
  3.             // use a link generator to generate an URL to the article
  4.             // you need to make sure the link generator generates an absolute url
  5.             $link $car->getClass()->getLinkGenerator()->generate($car, [
  6.                 'referenceType' => UrlGeneratorInterface::ABSOLUTE_URL
  7.             ]);
  8.             // create an entry for the sitemap
  9.             $url = new UrlConcrete($link);
  1.         $container $event->getUrlContainer();
  2.         $section $event->getSection();
  3.         foreach ($this->generators as $generator) {
  4.             $generator->populate($container$section);
  5.         }
  6.     }
  7. }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     protected function populate(string $section null): void
  3.     {
  4.         $event = new SitemapPopulateEvent($this$section$this->urlGenerator);
  5.         $this->dispatcher->dispatch($eventSitemapPopulateEvent::ON_SITEMAP_POPULATE);
  6.     }
  7.     /**
  8.      * @return Sitemapindex
  9.      */
  1.      * @inheritdoc
  2.      */
  3.     public function fetch(string $name): ?XmlConstraint
  4.     {
  5.         if ('root' === $name) {
  6.             $this->populate();
  7.             return $this->getRoot();
  8.         }
  9.         $this->populate($name);
  1.      *
  2.      * @return Response
  3.      */
  4.     public function indexAction(): Response
  5.     {
  6.         $sitemapindex $this->generator->fetch('root');
  7.         if (!$sitemapindex) {
  8.             throw new NotFoundHttpException('Not found');
  9.         }
in vendor/symfony/http-kernel/HttpKernel.php -> indexAction (line 181)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/pimcore/versions/initial_pimcore_version/vendor/autoload_runtime.php') in public/index.php (line 20)
  1. use Pimcore\Bootstrap;
  2. use Pimcore\Tool;
  3. use Symfony\Component\Debug\Debug;
  4. use Symfony\Component\HttpFoundation\Request;
  5. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  6. Bootstrap::setProjectRoot();
  7. return function (Request $request, array $context) {

Logs

Level Channel Message
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\DataHubBundle\PimcoreDataHubBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\EnterpriseSubscriptionToolsBundle\PimcoreEnterpriseSubscriptionToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\DataHubFileExportBundle\PimcoreDataHubFileExportBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\HeadlessDocumentsBundle\PimcoreHeadlessDocumentsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\OpenIdConnectBundle\PimcoreOpenIdConnectBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\PortalEngineBundle\PimcorePortalEngineBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Pimcore\TranslationsProviderInterfaceBundle\PimcoreTranslationsProviderInterfaceBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/templating 6.4: "Symfony\Component\Templating\EngineInterface" is deprecated since version 6.4 and will be removed in 7.0. Use Twig instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/templating 6.4: "Symfony\Component\Templating\StreamingEngineInterface" is deprecated since version 6.4 and will be removed in 7.0. Use Twig instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/templating 6.4: "Symfony\Component\Templating\DelegatingEngine" is deprecated since version 6.4 and will be removed in 7.0. Use Twig instead.
{
    "exception": {}
}
DEBUG 15:51:09 event Notified event "pimcore.system.configuration.get" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminConfigListener::updateSystemConfiguration".
{
    "event": "pimcore.system.configuration.get",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminConfigListener::updateSystemConfiguration"
}
INFO 15:51:09 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Passing an instance of "Doctrine\Common\Annotations\Reader" as first and the environment as second argument to "Symfony\Component\Routing\Loader\AttributeClassLoader::__construct" is deprecated. Pass the environment as first argument instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Asset\AssetController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Asset\AssetHelperController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\DataObject\ClassController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\DataObject\ClassificationstoreController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\DataObject\DataObjectController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\DataObject\DataObjectHelperController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\DataObject\QuantityValueController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\DataObject\VariantsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\DocumentController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\EmailController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\FolderController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\HardlinkController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\LinkController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\PageController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\RenderletController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\Document\SnippetController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\ElementController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\EmailController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\IndexController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\InstallController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\LoginController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\MiscController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\NotificationController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\PortalController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\RecyclebinController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\TagsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\TranslationController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\UserController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\Admin\WorkflowController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\GDPR\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\GDPR\AssetController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\GDPR\DataObjectController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\GDPR\PimcoreUsersController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\AdminBundle\Controller\GDPR\SentMailController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\ApplicationLoggerBundle\Controller\LogController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\CustomReportsBundle\Controller\Reports\CustomReportController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubSimpleRestBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubSimpleRestBundle\Controller\EndpointController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubSimpleRestBundle\Controller\SwaggerController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubSimpleRestBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\PersonalizationBundle\Controller\Admin\TargetingController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\PersonalizationBundle\Controller\Admin\TargetingPageController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\PersonalizationBundle\Controller\Admin\TargetingSnippetController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\EcommerceFrameworkBundle\Controller\AdminOrderController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\EcommerceFrameworkBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\EcommerceFrameworkBundle\Controller\IndexController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\EcommerceFrameworkBundle\Controller\PricingController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\EcommerceFrameworkBundle\Controller\VoucherController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\GoogleMarketingBundle\Controller\PortalController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\GoogleMarketingBundle\Controller\Reports\AnalyticsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\GoogleMarketingBundle\Controller\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\ActivitiesController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\Customers\FilterDefinitionController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\CustomersController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\DuplicatesController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\GDPRDataController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\HelperController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\RulesController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\SegmentAssignmentController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Admin\TemplatesController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Report\TermSegmentBuilderController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Api\ActivitiesController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Api\CustomersController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Api\DeletionsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Api\SegmentGroupsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Api\SegmentsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Api\SegmentsOfCustomersController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Mailchimp\WebhookController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Rest\Newsletter\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "CustomerManagementFrameworkBundle\Controller\Preview\ObjectPreviewController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\NewsletterBundle\Controller\Document\NewsletterController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\GlossaryBundle\Controller\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\SeoBundle\Controller\Document\DocumentController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\SeoBundle\Controller\MiscController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\SeoBundle\Controller\RedirectsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\SeoBundle\Controller\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\SimpleBackendSearchBundle\Controller\DataObjectController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\SimpleBackendSearchBundle\Controller\SearchController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "OutputDataConfigToolkitBundle\Controller\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "OutputDataConfigToolkitBundle\Controller\ClassController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Web2PrintToolsBundle\Controller\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\ObjectMergerBundle\Controller\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WebToPrintBundle\Controller\Document\PrintcontainerController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WebToPrintBundle\Controller\Document\PrintpageController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WebToPrintBundle\Controller\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WebToPrintBundle\Controller\Document\PrintcontainerController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WebToPrintBundle\Controller\Document\PrintpageController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\StaticRoutesBundle\Controller\SettingsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WordExportBundle\Controller\TranslationController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\XliffBundle\Controller\XliffTranslationController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:09 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\AssetMetadataClassDefinitionsBundle\Controller\BackendController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\AssetMetadataClassDefinitionsBundle\Controller\DefaultController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\EnterpriseSubscriptionToolsBundle\Controller\LicenseCheckController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubFileExportBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubFileExportBundle\Controller\DownloadController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubProductsupBundle\Controller\ProductsupController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubWebhooksBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataHubWebhooksBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataImporterBundle\Controller\ConfigDataObjectController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DataImporterBundle\Controller\PushImportController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\HeadlessDocumentsBundle\Controller\DefaultController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\HeadlessDocumentsBundle\Controller\Admin\Document\HeadlessDocumentController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\HeadlessDocumentsBundle\Controller\Template\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\HeadlessDocumentsBundle\Controller\Brick\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\OpenIdConnectBundle\Controller\AuthController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\OpenIdConnectBundle\Controller\ButtonInjectionController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\OpenIdConnectBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\PerspectiveEditorBundle\Controller\PerspectiveController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\PortalEngineBundle\Controller\StatisticsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\PortalEngineBundle\Controller\StatisticsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\StatisticsExplorerBundle\Controller\StatisticsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\TranslationsProviderInterfaceBundle\Controller\BackendController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\TranslationsProviderInterfaceBundle\Controller\TranslationJobsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WorkflowDesignerBundle\Controller\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\WorkflowDesignerBundle\Controller\ConfigController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "AdvancedObjectSearchBundle\Controller\AdminController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DirectEditBundle\Controller\AssetEditController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "Pimcore\Bundle\DirectEditBundle\Controller\ClientController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\AccountController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\CartController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\CheckoutController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\DefaultController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\NewsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\PaymentController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\ProductController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\Web2printController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: The "annotation" route type is deprecated, use the "attribute" route type instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\AccountController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\CartController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\CheckoutController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\DefaultController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\NewsController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\PaymentController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\ProductController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/routing 6.4: Class "App\Controller\Web2printController" uses Doctrine Annotations to configure routes, which is deprecated. Use PHP attributes instead.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToPHPValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\PortalEngineBundle\Tools\Doctrine\Type\Jsonfy" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Pimcore\Bundle\PortalEngineBundle\Tools\Doctrine\Type\Jsonfy" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
INFO 15:51:10 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "charset": "UTF8MB4",
        "host": "127.0.0.1",
        "port": "3306",
        "user": "pimcore_db",
        "password": "<redacted>",
        "dbname": "pimcore_db",
        "idle_connection_ttl": 600,
        "driverOptions": {
            "1002": "SET sql_mode = '';"
        },
        "serverVersion": "8.0.36-28",
        "defaultTableOptions": {
            "charset": "UTF8MB4",
            "engine": "InnoDB",
            "collate": "utf8mb4_general_ci"
        }
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM settings_store WHERE id = ? AND scope = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM settings_store WHERE id = ? AND scope = ?",
    "params": {
        "1": "pimcore_translations_provider_interface",
        "2": "pimcore_translations_provider_interface"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM settings_store WHERE id = ? AND scope = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM settings_store WHERE id = ? AND scope = ?",
    "params": {
        "1": "BUNDLE_INSTALLED__Pimcore\\Bundle\\SeoBundle\\PimcoreSeoBundle",
        "2": "pimcore"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM redirects WHERE ( (source = ? AND (`type` = ? OR `type` = ?)) OR (source = ? AND `type` = ?) OR (source = ? AND `type` = ?) ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM redirects WHERE\n            (\n                (source = ? AND (`type` = ? OR `type` = ?)) OR\n                (source = ? AND `type` = ?) OR\n                (source = ? AND `type` = ?)\n            ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC",
    "params": {
        "1": "/_profiler/latest",
        "2": "path",
        "3": "auto_create",
        "4": "/_profiler/latest?type=request",
        "5": "path_query",
        "6": "https://demo.pimcoreui.studioemma.com/_profiler/latest?type=request",
        "7": "entire_uri"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2,
        "4": 2,
        "5": 2,
        "6": 2,
        "7": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?) (parameters: {params}, types: {types})
{
    "sql": "SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?)",
    "params": {
        "1": 1772034670,
        "2": "system_route_redirect"
    },
    "types": {
        "1": 1,
        "2": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "SELECT item_id, CASE WHEN item_lifetime IS NULL OR item_lifetime + item_time > ? THEN item_data ELSE NULL END FROM cache_items WHERE item_id IN (?, ?, ?)",
    "params": {
        "1": 1772034670,
        "2": "system\u0001tags\u0001",
        "3": "redirect\u0001tags\u0001",
        "4": "route\u0001tags\u0001"
    },
    "types": {
        "1": 1,
        "2": 2,
        "3": 2,
        "4": 2
    }
}
DEBUG 15:51:10 cache Successfully got data for key system_route_redirect from cache
{
    "key": "system_route_redirect"
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM tmp_store WHERE id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM tmp_store WHERE id = ?",
    "params": {
        "1": "maintenance_mode"
    },
    "types": {
        "1": 2
    }
}
INFO 15:51:10 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://demo.pimcoreui.studioemma.com/_profiler/latest?type=request",
    "method": "GET"
}
DEBUG 15:51:10 app Resolved pimcore context for path /_profiler/latest to profiler
{
    "path": "/_profiler/latest",
    "context": "profiler"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\StudioBackendBundle\EventSubscriber\CorsSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\StudioBackendBundle\\EventSubscriber\\CorsSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\SeoBundle\EventListener\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\SeoBundle\\EventListener\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\SessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\SessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\OpenIdSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\OpenIdSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\TimezoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\TimezoneSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\CodeInjectionListener::check".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\CodeInjectionListener::check"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
INFO 15:51:10 php User Deprecated: Since symfony/serializer 6.4: Passing a "Doctrine\Common\Annotations\PsrCachedReader" instance as argument 1 to "Symfony\Component\Serializer\Mapping\Loader\AttributeLoader::__construct()" is deprecated, pass null or omit the parameter instead.
{
    "exception": {}
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\Frontend\TargetingElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\Frontend\\TargetingElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\SecuritySubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\SecuritySubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\HeadlessDocumentsBundle\EventListener\HeadlessDocumentListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\HeadlessDocumentsBundle\\EventListener\\HeadlessDocumentListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\PrefixSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\PrefixSubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
INFO 15:51:10 php User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:65 called by App_KernelDevDebugContainer.php:3447, https://github.com/doctrine/orm/issues/10098, package doctrine/orm)
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode also with the AnnotationDriver today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AnnotationDriver.php:75 called by App_KernelDevDebugContainer.php:3447, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 15:51:10 php User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "ContainerIXxLMqC\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerIXxLMqC\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM settings_store WHERE id = ? AND scope = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM settings_store WHERE id = ? AND scope = ?",
    "params": {
        "1": "BUNDLE_INSTALLED__Pimcore\\Bundle\\SeoBundle\\PimcoreSeoBundle",
        "2": "pimcore"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM redirects WHERE ( (source = ? AND (`type` = ? OR `type` = ?)) OR (source = ? AND `type` = ?) OR (source = ? AND `type` = ?) ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM redirects WHERE\n            (\n                (source = ? AND (`type` = ? OR `type` = ?)) OR\n                (source = ? AND `type` = ?) OR\n                (source = ? AND `type` = ?)\n            ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC",
    "params": {
        "1": "/_fragment",
        "2": "path",
        "3": "auto_create",
        "4": "/_fragment?_path=_format=html&_locale=en&_controller=web_profiler.controller.exception_panel%3A%3Astylesheet",
        "5": "path_query",
        "6": "https://demo.pimcoreui.studioemma.com/_fragment?_path=_format=html&_locale=en&_controller=web_profiler.controller.exception_panel%3A%3Astylesheet",
        "7": "entire_uri"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2,
        "4": 2,
        "5": 2,
        "6": 2,
        "7": 2
    }
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\StudioBackendBundle\EventSubscriber\CorsSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\StudioBackendBundle\\EventSubscriber\\CorsSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\SeoBundle\EventListener\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\SeoBundle\\EventListener\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\SessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\SessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\OpenIdSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\OpenIdSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\TimezoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\TimezoneSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\CodeInjectionListener::check".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\CodeInjectionListener::check"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\Frontend\TargetingElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\Frontend\\TargetingElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\SecuritySubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\SecuritySubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\HeadlessDocumentsBundle\EventListener\HeadlessDocumentListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\HeadlessDocumentsBundle\\EventListener\\HeadlessDocumentListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\PrefixSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\PrefixSubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "ContainerIXxLMqC\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerIXxLMqC\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\StudioBackendBundle\EventSubscriber\CorsSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\StudioBackendBundle\\EventSubscriber\\CorsSubscriber::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::stopPropagationCheck".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::stopPropagationCheck"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
DEBUG 15:51:10 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 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\CodeInjectionListener::inject".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\CodeInjectionListener::inject"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 15:51:10 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 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSecurityListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSecurityListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\GenericDataIndexBundle\EventSubscriber\DebugSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\GenericDataIndexBundle\\EventSubscriber\\DebugSubscriber::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\HardlinkCanonicalListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\HardlinkCanonicalListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleTagManagerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleTagManagerListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleAnalyticsCodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleAnalyticsCodeListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\ToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 15:51:10 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 15:51:10 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 15:51:10 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 15:51:10 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 15:51:10 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM settings_store WHERE id = ? AND scope = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM settings_store WHERE id = ? AND scope = ?",
    "params": {
        "1": "BUNDLE_INSTALLED__Pimcore\\Bundle\\SeoBundle\\PimcoreSeoBundle",
        "2": "pimcore"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM redirects WHERE ( (source = ? AND (`type` = ? OR `type` = ?)) OR (source = ? AND `type` = ?) OR (source = ? AND `type` = ?) ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM redirects WHERE\n            (\n                (source = ? AND (`type` = ? OR `type` = ?)) OR\n                (source = ? AND `type` = ?) OR\n                (source = ? AND `type` = ?)\n            ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC",
    "params": {
        "1": "/_fragment",
        "2": "path",
        "3": "auto_create",
        "4": "/_fragment?type=request&_path=_format=html&_locale=en&_controller=web_profiler.controller.profiler%3A%3AsearchBarAction",
        "5": "path_query",
        "6": "https://demo.pimcoreui.studioemma.com/_fragment?_path=_format=html&_locale=en&_controller=web_profiler.controller.profiler%3A%3AsearchBarAction&type=request",
        "7": "entire_uri"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2,
        "4": 2,
        "5": 2,
        "6": 2,
        "7": 2
    }
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\StudioBackendBundle\EventSubscriber\CorsSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\StudioBackendBundle\\EventSubscriber\\CorsSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\SeoBundle\EventListener\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\SeoBundle\\EventListener\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\SessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\SessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\OpenIdSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\OpenIdSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\TimezoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\TimezoneSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\CodeInjectionListener::check".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\CodeInjectionListener::check"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\Frontend\TargetingElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\Frontend\\TargetingElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\SecuritySubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\SecuritySubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\HeadlessDocumentsBundle\EventListener\HeadlessDocumentListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\HeadlessDocumentsBundle\\EventListener\\HeadlessDocumentListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\PrefixSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\PrefixSubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "ContainerIXxLMqC\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerIXxLMqC\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\StudioBackendBundle\EventSubscriber\CorsSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\StudioBackendBundle\\EventSubscriber\\CorsSubscriber::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::stopPropagationCheck".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::stopPropagationCheck"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
DEBUG 15:51:10 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 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\CodeInjectionListener::inject".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\CodeInjectionListener::inject"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 15:51:10 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 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSecurityListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSecurityListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\GenericDataIndexBundle\EventSubscriber\DebugSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\GenericDataIndexBundle\\EventSubscriber\\DebugSubscriber::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\HardlinkCanonicalListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\HardlinkCanonicalListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleTagManagerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleTagManagerListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleAnalyticsCodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleAnalyticsCodeListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\ToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 15:51:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 15:51:10 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 15:51:10 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 15:51:10 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 15:51:10 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 15:51:10 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM settings_store WHERE id = ? AND scope = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM settings_store WHERE id = ? AND scope = ?",
    "params": {
        "1": "BUNDLE_INSTALLED__Pimcore\\Bundle\\SeoBundle\\PimcoreSeoBundle",
        "2": "pimcore"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 15:51:10 doctrine Executing statement: SELECT * FROM redirects WHERE ( (source = ? AND (`type` = ? OR `type` = ?)) OR (source = ? AND `type` = ?) OR (source = ? AND `type` = ?) ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC (parameters: {params}, types: {types})
{
    "sql": "SELECT * FROM redirects WHERE\n            (\n                (source = ? AND (`type` = ? OR `type` = ?)) OR\n                (source = ? AND `type` = ?) OR\n                (source = ? AND `type` = ?)\n            ) AND active = 1 AND (regex IS NULL OR regex = 0) AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC",
    "params": {
        "1": "/_fragment",
        "2": "path",
        "3": "auto_create",
        "4": "/_fragment?_path=_format=html&_locale=en&_controller=web_profiler.controller.exception_panel%3A%3Abody",
        "5": "path_query",
        "6": "https://demo.pimcoreui.studioemma.com/_fragment?_path=_format=html&_locale=en&_controller=web_profiler.controller.exception_panel%3A%3Abody",
        "7": "entire_uri"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2,
        "4": 2,
        "5": 2,
        "6": 2,
        "7": 2
    }
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\StudioBackendBundle\EventSubscriber\CorsSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\StudioBackendBundle\\EventSubscriber\\CorsSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\SeoBundle\EventListener\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\SeoBundle\\EventListener\\RoutingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\SessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\SessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\OpenIdSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\OpenIdSessionBagListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\GoogleMarketingBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\GoogleMarketingBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\TimezoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\TimezoneSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\OpenIdConnectBundle\EventListener\CodeInjectionListener::check".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\OpenIdConnectBundle\\EventListener\\CodeInjectionListener::check"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\EcommerceFrameworkBundle\EventListener\Frontend\TrackingCodeFlashMessageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\EcommerceFrameworkBundle\\EventListener\\Frontend\\TrackingCodeFlashMessageListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "CustomerManagementFrameworkBundle\Event\Frontend\UrlActivityTracker::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "CustomerManagementFrameworkBundle\\Event\\Frontend\\UrlActivityTracker::onKernelRequest"
}
DEBUG 15:51:10 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 15:51:10 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PersonalizationBundle\Targeting\EventListener\Frontend\TargetingElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PersonalizationBundle\\Targeting\\EventListener\\Frontend\\TargetingElementListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\SecuritySubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\SecuritySubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\HeadlessDocumentsBundle\EventListener\HeadlessDocumentListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\HeadlessDocumentsBundle\\EventListener\\HeadlessDocumentListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\PortalEngineBundle\EventSubscriber\PrefixSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\PortalEngineBundle\\EventSubscriber\\PrefixSubscriber::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "ContainerIXxLMqC\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerIXxLMqC\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 15:51:10 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

InvalidParameterException
Symfony\Component\Routing\Exception\InvalidParameterException:
Parameter "productname" for route "shop-detail.en" must match "[\w-]+" ("" given) to generate a corresponding URL.

  at vendor/symfony/routing/Generator/UrlGenerator.php:182
  at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate()
     (vendor/symfony/routing/Generator/CompiledUrlGenerator.php:67)
  at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate()
     (vendor/symfony/routing/Router.php:221)
  at Symfony\Component\Routing\Router->generate()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:201)
  at Symfony\Cmf\Component\Routing\ChainRouter->generate()
     (vendor/pimcore/pimcore/lib/Twig/Extension/Templating/PimcoreUrl.php:103)
  at Pimcore\Twig\Extension\Templating\PimcoreUrl->generateUrl()
     (vendor/pimcore/pimcore/lib/Twig/Extension/Templating/PimcoreUrl.php:45)
  at Pimcore\Twig\Extension\Templating\PimcoreUrl->__invoke()
     (src/Website/Tool/PimcoreUrl.php:36)
  at App\Website\Tool\PimcoreUrl->__invoke()
     (src/Website/LinkGenerator/ProductLinkGenerator.php:66)
  at App\Website\LinkGenerator\ProductLinkGenerator->App\Website\LinkGenerator\{closure}()
     (vendor/pimcore/pimcore/models/DataObject/Service.php:1994)
  at Pimcore\Model\DataObject\Service::useInheritedValues()
     (src/Website/LinkGenerator/ProductLinkGenerator.php:59)
  at App\Website\LinkGenerator\ProductLinkGenerator->doGenerate()
     (src/Website/LinkGenerator/ProductLinkGenerator.php:37)
  at App\Website\LinkGenerator\ProductLinkGenerator->generate()
     (src/Sitemaps/ProductGenerator.php:58)
  at App\Sitemaps\ProductGenerator->populate()
     (vendor/pimcore/pimcore/bundles/SeoBundle/src/EventListener/SitemapGeneratorListener.php:57)
  at Pimcore\Bundle\SeoBundle\EventListener\SitemapGeneratorListener->onPopulateSitemap()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/presta/sitemap-bundle/src/Service/AbstractGenerator.php:172)
  at Presta\SitemapBundle\Service\AbstractGenerator->populate()
     (vendor/presta/sitemap-bundle/src/Service/Generator.php:50)
  at Presta\SitemapBundle\Service\Generator->fetch()
     (vendor/presta/sitemap-bundle/src/Controller/SitemapController.php:48)
  at Presta\SitemapBundle\Controller\SitemapController->indexAction()
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/pimcore/versions/initial_pimcore_version/vendor/autoload_runtime.php')
     (public/index.php:20)