Symfony Exception

TaxonNotFoundException

HTTP 404 Not Found

Taxon has not been found!

Exception

BitBag\SyliusElasticsearchPlugin\Exception\ TaxonNotFoundException

  1.         $localeCode $this->localeContext->getLocaleCode();
  2.         /** @var TaxonInterface $taxon */
  3.         $taxon $this->taxonRepository->findOneBySlug($slug$localeCode);
  4.         if (null === $slug || null === $taxon) {
  5.             throw new TaxonNotFoundException();
  6.         }
  7.         return $taxon;
  8.     }
  9. }
  1.         $this->optionsFinder $optionsFinder;
  2.     }
  3.     public function getOptions(): ?array
  4.     {
  5.         $taxon $this->taxonContext->getTaxon();
  6.         $options $this->optionsFinder->findByTaxon($taxon);
  7.         return $options;
  8.     }
  9. }
  1.         $this->productOptionsMapper $productOptionsMapper;
  2.     }
  3.     public function buildForm(FormBuilderInterface $builder, array $options): void
  4.     {
  5.         foreach ($this->productOptionsContext->getOptions() as $productOption) {
  6.             $name $this->optionNameResolver->resolvePropertyName($productOption->getCode());
  7.             $choices $this->productOptionsMapper->mapToChoices($productOption);
  8.             $choices array_unique($choices);
  9.             $builder->add($nameChoiceType::class, [
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildForm($builder$options);
  4.         }
  5.         $this->innerType->buildForm($builder$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildForm($builder$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildForm(FormBuilderInterface $builder, array $options)
  5.     {
  6.         $this->proxiedType->buildForm($builder$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/FormFactory.php -> buildForm (line 70)
  1.         $builder $type->createBuilder($this, (string) $name$options);
  2.         // Explicitly call buildForm() in order to be able to override either
  3.         // createBuilder() or buildForm() in the resolved form type
  4.         $type->buildForm($builder$builder->getOptions());
  5.         return $builder;
  6.     }
  7.     /**
in vendor/symfony/form/FormBuilder.php -> createNamedBuilder (line 94)
  1.         if (null === $type && null === $this->getDataClass()) {
  2.             $type 'Symfony\Component\Form\Extension\Core\Type\TextType';
  3.         }
  4.         if (null !== $type) {
  5.             return $this->getFormFactory()->createNamedBuilder($name$typenull$options);
  6.         }
  7.         return $this->getFormFactory()->createBuilderForProperty($this->getDataClass(), $namenull$options);
  8.     }
  1.      * Converts all unresolved children into {@link FormBuilder} instances.
  2.      */
  3.     private function resolveChildren()
  4.     {
  5.         foreach ($this->unresolvedChildren as $name => $info) {
  6.             $this->children[$name] = $this->create($name$info[0], $info[1]);
  7.         }
  8.         $this->unresolvedChildren = [];
  9.     }
  10. }
in vendor/symfony/form/FormBuilder.php -> resolveChildren (line 195)
  1.     {
  2.         if ($this->locked) {
  3.             throw new BadMethodCallException('FormBuilder methods cannot be accessed anymore once the builder is turned into a FormConfigInterface instance.');
  4.         }
  5.         $this->resolveChildren();
  6.         $form = new Form($this->getFormConfig());
  7.         foreach ($this->children as $child) {
  8.             // Automatic initialization is only supported on root forms
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function create(string $type 'Symfony\Component\Form\Extension\Core\Type\FormType'$data null, array $options = [])
  5.     {
  6.         return $this->createBuilder($type$data$options)->getForm();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         $this->twig $twig;
  2.     }
  3.     public function __invoke(Request $request): Response
  4.     {
  5.         $form $this->formFactory->create(ShopProductsFilterType::class);
  6.         $form->handleRequest($request);
  7.         $requestData array_merge(
  8.             $form->getData(),
  9.             $request->query->all(),
  10.             ['slug' => $request->get('slug')]
  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);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle() in public/index.php (line 29)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 request Matched route "bitbag_sylius_elasticsearch_plugin_shop_list_products".
{
    "route": "bitbag_sylius_elasticsearch_plugin_shop_list_products",
    "route_parameters": {
        "_route": "bitbag_sylius_elasticsearch_plugin_shop_list_products",
        "_controller": "bitbag_sylius_elasticsearch_plugin.controller.action.shop.list_products",
        "template": "@BitBagSyliusElasticsearchPlugin/Shop/Product/index.html.twig",
        "_locale": "cs_CZ",
        "slug": "akce"
    },
    "request_uri": "https://new.profilteam.cz/cs_CZ/products-list/akce",
    "method": "GET"
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 doctrine SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.externalIdentifier AS externalIdentifier_17, t0.ignoreExternalData AS ignoreExternalData_18, t0.externalCreatedAt AS externalCreatedAt_19, t0.externalUpdatedAt AS externalUpdatedAt_20, t0.heliosObject AS heliosObject_21, t0.default_locale_id AS default_locale_id_22, t23.code AS code_24, t23.created_at AS created_at_25, t23.updated_at AS updated_at_26, t23.id AS id_27, t23.externalIdentifier AS externalIdentifier_28, t23.ignoreExternalData AS ignoreExternalData_29, t23.externalCreatedAt AS externalCreatedAt_30, t23.externalUpdatedAt AS externalUpdatedAt_31, t23.heliosObject AS heliosObject_32, t0.base_currency_id AS base_currency_id_33, t34.code AS code_35, t34.created_at AS created_at_36, t34.updated_at AS updated_at_37, t34.id AS id_38, t34.externalIdentifier AS externalIdentifier_39, t34.ignoreExternalData AS ignoreExternalData_40, t34.externalCreatedAt AS externalCreatedAt_41, t34.externalUpdatedAt AS externalUpdatedAt_42, t34.heliosObject AS heliosObject_43, t0.default_tax_zone_id AS default_tax_zone_id_44, t0.menu_taxon_id AS menu_taxon_id_45, t0.shop_billing_data_id AS shop_billing_data_id_46 FROM sylius_channel t0 INNER JOIN sylius_locale t23 ON t0.default_locale_id = t23.id INNER JOIN sylius_currency t34 ON t0.base_currency_id = t34.id WHERE t0.hostname = ? LIMIT 1
[
    "new.profilteam.cz"
]
DEBUG 06:42:30 doctrine SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4, t0.externalIdentifier AS externalIdentifier_5, t0.ignoreExternalData AS ignoreExternalData_6, t0.externalCreatedAt AS externalCreatedAt_7, t0.externalUpdatedAt AS externalUpdatedAt_8, t0.heliosObject AS heliosObject_9 FROM sylius_currency t0 INNER JOIN sylius_channel_currencies ON t0.id = sylius_channel_currencies.currency_id WHERE sylius_channel_currencies.channel_id = ?
[
    1
]
DEBUG 06:42:30 doctrine SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4, t0.externalIdentifier AS externalIdentifier_5, t0.ignoreExternalData AS ignoreExternalData_6, t0.externalCreatedAt AS externalCreatedAt_7, t0.externalUpdatedAt AS externalUpdatedAt_8, t0.heliosObject AS heliosObject_9 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ?
[
    1
]
DEBUG 06:42:30 doctrine SELECT t0.code AS code_1, t0.enabled AS enabled_2, t0.id AS id_3, t0.externalIdentifier AS externalIdentifier_4, t0.ignoreExternalData AS ignoreExternalData_5, t0.externalCreatedAt AS externalCreatedAt_6, t0.externalUpdatedAt AS externalUpdatedAt_7, t0.heliosObject AS heliosObject_8 FROM sylius_country t0 INNER JOIN sylius_channel_countries ON t0.id = sylius_channel_countries.country_id WHERE sylius_channel_countries.channel_id = ?
[
    1
]
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.shop" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.rememberme.shop" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\RememberMeListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.shop" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.admin" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.rememberme.admin" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\RememberMeAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.admin" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:42:30 security Populated the TokenStorage with an anonymous Token.
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 06:42:30 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 06:42:30 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Filter\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Filter\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Odiseo\SyliusRbacPlugin\Access\Listener\AccessCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Odiseo\\SyliusRbacPlugin\\Access\\Listener\\AccessCheckListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
INFO 06:42:30 php User Deprecated: Since symfony/property-access 5.2: Passing a boolean as the first argument to "Symfony\Component\PropertyAccess\PropertyAccessor::__construct()" is deprecated. Pass a combination of bitwise flags instead (i.e an integer).
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/property-access 5.3: Passing a boolean as the second argument to "Symfony\Component\PropertyAccess\PropertyAccessor::__construct()" is deprecated. Pass a combination of bitwise flags instead (i.e an integer).
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 doctrine SELECT s0_.source AS source_0, s0_.destination AS destination_1, s0_.permanent AS permanent_2, s0_.count AS count_3, s0_.last_accessed AS last_accessed_4, s0_.enabled AS enabled_5, s0_.only_404 AS only_404_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s0_.id AS id_9, s1_.code AS code_10, s1_.name AS name_11, s1_.color AS color_12, s1_.description AS description_13, s1_.enabled AS enabled_14, s1_.hostname AS hostname_15, s1_.created_at AS created_at_16, s1_.updated_at AS updated_at_17, s1_.id AS id_18, s1_.theme_name AS theme_name_19, s1_.tax_calculation_strategy AS tax_calculation_strategy_20, s1_.contact_email AS contact_email_21, s1_.contact_phone_number AS contact_phone_number_22, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_23, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_24, s1_.account_verification_required AS account_verification_required_25, s1_.externalIdentifier AS externalIdentifier_26, s1_.ignoreExternalData AS ignoreExternalData_27, s1_.externalCreatedAt AS externalCreatedAt_28, s1_.externalUpdatedAt AS externalUpdatedAt_29, s1_.heliosObject AS heliosObject_30, s1_.default_locale_id AS default_locale_id_31, s1_.base_currency_id AS base_currency_id_32, s1_.default_tax_zone_id AS default_tax_zone_id_33, s1_.menu_taxon_id AS menu_taxon_id_34, s1_.shop_billing_data_id AS shop_billing_data_id_35 FROM setono_sylius_redirect__redirect s0_ LEFT JOIN setono_sylius_redirect__redirect_channels s2_ ON s0_.id = s2_.redirect_id LEFT JOIN sylius_channel s1_ ON s1_.id = s2_.channel_id WHERE s0_.source = ? AND s0_.enabled = 1 AND s0_.only_404 = ?
[
    "/cs_CZ/products-list/akce",
    false
]
DEBUG 06:42:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:42:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:42:30 event Notified event "kernel.controller" to listener "Setono\SyliusRedirectPlugin\EventListener\ControllerSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Setono\\SyliusRedirectPlugin\\EventListener\\ControllerSubscriber::onKernelController"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Spinbits\SyliusGoogleAnalytics4Plugin\EventListener\CartEventListener::onKernelRequest".
{
    "event": "kernel.controller_arguments",
    "listener": "Spinbits\\SyliusGoogleAnalytics4Plugin\\EventListener\\CartEventListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Spinbits\SyliusGoogleAnalytics4Plugin\EventListener\CheckoutEventListener::onKernelRequest".
{
    "event": "kernel.controller_arguments",
    "listener": "Spinbits\\SyliusGoogleAnalytics4Plugin\\EventListener\\CheckoutEventListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Spinbits\SyliusGoogleAnalytics4Plugin\EventListener\NavigationEventListener::onKernelRequest".
{
    "event": "kernel.controller_arguments",
    "listener": "Spinbits\\SyliusGoogleAnalytics4Plugin\\EventListener\\NavigationEventListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::onControllerArguments"
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 doctrine SELECT s0_.code AS code_0, s0_.tree_left AS tree_left_1, s0_.tree_right AS tree_right_2, s0_.tree_level AS tree_level_3, s0_.position AS position_4, s0_.enabled AS enabled_5, s0_.id AS id_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s0_.externalIdentifier AS externalIdentifier_9, s0_.ignoreExternalData AS ignoreExternalData_10, s0_.externalCreatedAt AS externalCreatedAt_11, s0_.externalUpdatedAt AS externalUpdatedAt_12, s0_.heliosObject AS heliosObject_13, s0_.metaTitle AS metaTitle_14, s0_.metaKeywords AS metaKeywords_15, s0_.metaDescription AS metaDescription_16, s1_.name AS name_17, s1_.slug AS slug_18, s1_.description AS description_19, s1_.id AS id_20, s1_.locale AS locale_21, s0_.tree_root AS tree_root_22, s0_.parent_id AS parent_id_23, s1_.translatable_id AS translatable_id_24 FROM sylius_taxon s0_ INNER JOIN sylius_taxon_translation s1_ ON s0_.id = s1_.translatable_id WHERE s0_.enabled = ? AND s1_.slug = ? AND s1_.locale = ?
[
    true,
    "akce",
    "cs_CZ"
]
DEBUG 06:42:30 doctrine SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.externalIdentifier AS externalIdentifier_17, t0.ignoreExternalData AS ignoreExternalData_18, t0.externalCreatedAt AS externalCreatedAt_19, t0.externalUpdatedAt AS externalUpdatedAt_20, t0.heliosObject AS heliosObject_21, t0.default_locale_id AS default_locale_id_22, t23.code AS code_24, t23.created_at AS created_at_25, t23.updated_at AS updated_at_26, t23.id AS id_27, t23.externalIdentifier AS externalIdentifier_28, t23.ignoreExternalData AS ignoreExternalData_29, t23.externalCreatedAt AS externalCreatedAt_30, t23.externalUpdatedAt AS externalUpdatedAt_31, t23.heliosObject AS heliosObject_32, t0.base_currency_id AS base_currency_id_33, t34.code AS code_35, t34.created_at AS created_at_36, t34.updated_at AS updated_at_37, t34.id AS id_38, t34.externalIdentifier AS externalIdentifier_39, t34.ignoreExternalData AS ignoreExternalData_40, t34.externalCreatedAt AS externalCreatedAt_41, t34.externalUpdatedAt AS externalUpdatedAt_42, t34.heliosObject AS heliosObject_43, t0.default_tax_zone_id AS default_tax_zone_id_44, t0.menu_taxon_id AS menu_taxon_id_45, t0.shop_billing_data_id AS shop_billing_data_id_46 FROM sylius_channel t0 INNER JOIN sylius_locale t23 ON t0.default_locale_id = t23.id INNER JOIN sylius_currency t34 ON t0.base_currency_id = t34.id
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 doctrine SELECT s0_.source AS source_0, s0_.destination AS destination_1, s0_.permanent AS permanent_2, s0_.count AS count_3, s0_.last_accessed AS last_accessed_4, s0_.enabled AS enabled_5, s0_.only_404 AS only_404_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s0_.id AS id_9, s1_.code AS code_10, s1_.name AS name_11, s1_.color AS color_12, s1_.description AS description_13, s1_.enabled AS enabled_14, s1_.hostname AS hostname_15, s1_.created_at AS created_at_16, s1_.updated_at AS updated_at_17, s1_.id AS id_18, s1_.theme_name AS theme_name_19, s1_.tax_calculation_strategy AS tax_calculation_strategy_20, s1_.contact_email AS contact_email_21, s1_.contact_phone_number AS contact_phone_number_22, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_23, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_24, s1_.account_verification_required AS account_verification_required_25, s1_.externalIdentifier AS externalIdentifier_26, s1_.ignoreExternalData AS ignoreExternalData_27, s1_.externalCreatedAt AS externalCreatedAt_28, s1_.externalUpdatedAt AS externalUpdatedAt_29, s1_.heliosObject AS heliosObject_30, s1_.default_locale_id AS default_locale_id_31, s1_.base_currency_id AS base_currency_id_32, s1_.default_tax_zone_id AS default_tax_zone_id_33, s1_.menu_taxon_id AS menu_taxon_id_34, s1_.shop_billing_data_id AS shop_billing_data_id_35 FROM setono_sylius_redirect__redirect s0_ LEFT JOIN setono_sylius_redirect__redirect_channels s2_ ON s0_.id = s2_.redirect_id LEFT JOIN sylius_channel s1_ ON s1_.id = s2_.channel_id WHERE s0_.source = ? AND s0_.enabled = 1 AND s0_.only_404 = ?
[
    "/cs_CZ/products-list/akce",
    true
]
ERROR 06:42:30 request Uncaught PHP Exception BitBag\SyliusElasticsearchPlugin\Exception\TaxonNotFoundException: "Taxon has not been found!" at /home/forge/new.profilteam.cz/vendor/bitbag/elasticsearch-plugin/src/Context/TaxonContext.php line 50
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 06:42:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Filter\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Filter\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Odiseo\SyliusRbacPlugin\Access\Listener\AccessCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Odiseo\\SyliusRbacPlugin\\Access\\Listener\\AccessCheckListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
INFO 06:42:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 06:42:30 doctrine SELECT s0_.source AS source_0, s0_.destination AS destination_1, s0_.permanent AS permanent_2, s0_.count AS count_3, s0_.last_accessed AS last_accessed_4, s0_.enabled AS enabled_5, s0_.only_404 AS only_404_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s0_.id AS id_9, s1_.code AS code_10, s1_.name AS name_11, s1_.color AS color_12, s1_.description AS description_13, s1_.enabled AS enabled_14, s1_.hostname AS hostname_15, s1_.created_at AS created_at_16, s1_.updated_at AS updated_at_17, s1_.id AS id_18, s1_.theme_name AS theme_name_19, s1_.tax_calculation_strategy AS tax_calculation_strategy_20, s1_.contact_email AS contact_email_21, s1_.contact_phone_number AS contact_phone_number_22, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_23, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_24, s1_.account_verification_required AS account_verification_required_25, s1_.externalIdentifier AS externalIdentifier_26, s1_.ignoreExternalData AS ignoreExternalData_27, s1_.externalCreatedAt AS externalCreatedAt_28, s1_.externalUpdatedAt AS externalUpdatedAt_29, s1_.heliosObject AS heliosObject_30, s1_.default_locale_id AS default_locale_id_31, s1_.base_currency_id AS base_currency_id_32, s1_.default_tax_zone_id AS default_tax_zone_id_33, s1_.menu_taxon_id AS menu_taxon_id_34, s1_.shop_billing_data_id AS shop_billing_data_id_35 FROM setono_sylius_redirect__redirect s0_ LEFT JOIN setono_sylius_redirect__redirect_channels s2_ ON s0_.id = s2_.redirect_id LEFT JOIN sylius_channel s1_ ON s1_.id = s2_.channel_id WHERE s0_.source = ? AND s0_.enabled = 1 AND s0_.only_404 = ?
[
    "/cs_CZ/products-list/akce",
    false
]
DEBUG 06:42:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:42:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:42:30 event Notified event "kernel.controller" to listener "Setono\SyliusRedirectPlugin\EventListener\ControllerSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Setono\\SyliusRedirectPlugin\\EventListener\\ControllerSubscriber::onKernelController"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Spinbits\SyliusGoogleAnalytics4Plugin\EventListener\CartEventListener::onKernelRequest".
{
    "event": "kernel.controller_arguments",
    "listener": "Spinbits\\SyliusGoogleAnalytics4Plugin\\EventListener\\CartEventListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Spinbits\SyliusGoogleAnalytics4Plugin\EventListener\CheckoutEventListener::onKernelRequest".
{
    "event": "kernel.controller_arguments",
    "listener": "Spinbits\\SyliusGoogleAnalytics4Plugin\\EventListener\\CheckoutEventListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Spinbits\SyliusGoogleAnalytics4Plugin\EventListener\NavigationEventListener::onKernelRequest".
{
    "event": "kernel.controller_arguments",
    "listener": "Spinbits\\SyliusGoogleAnalytics4Plugin\\EventListener\\NavigationEventListener::onKernelRequest"
}
DEBUG 06:42:30 event Notified event "kernel.controller_arguments" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::onControllerArguments"
}

Stack Trace

TaxonNotFoundException
BitBag\SyliusElasticsearchPlugin\Exception\TaxonNotFoundException:
Taxon has not been found!

  at vendor/bitbag/elasticsearch-plugin/src/Context/TaxonContext.php:50
  at BitBag\SyliusElasticsearchPlugin\Context\TaxonContext->getTaxon()
     (vendor/bitbag/elasticsearch-plugin/src/Context/ProductOptionsContext.php:35)
  at BitBag\SyliusElasticsearchPlugin\Context\ProductOptionsContext->getOptions()
     (vendor/bitbag/elasticsearch-plugin/src/Form/Type/ProductOptionsFilterType.php:44)
  at BitBag\SyliusElasticsearchPlugin\Form\Type\ProductOptionsFilterType->buildForm()
     (vendor/symfony/form/ResolvedFormType.php:128)
  at Symfony\Component\Form\ResolvedFormType->buildForm()
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm()
     (vendor/symfony/form/FormFactory.php:70)
  at Symfony\Component\Form\FormFactory->createNamedBuilder()
     (vendor/symfony/form/FormBuilder.php:94)
  at Symfony\Component\Form\FormBuilder->create()
     (vendor/symfony/form/FormBuilder.php:244)
  at Symfony\Component\Form\FormBuilder->resolveChildren()
     (vendor/symfony/form/FormBuilder.php:195)
  at Symfony\Component\Form\FormBuilder->getForm()
     (vendor/symfony/form/FormFactory.php:28)
  at Symfony\Component\Form\FormFactory->create()
     (vendor/bitbag/elasticsearch-plugin/src/Controller/Action/Shop/ListProductsAction.php:65)
  at BitBag\SyliusElasticsearchPlugin\Controller\Action\Shop\ListProductsAction->__invoke()
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:199)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:29)