Exceptions
Exception
BitBag\SyliusElasticsearchPlugin\Exception\ TaxonNotFoundException
Show exception properties
BitBag\SyliusElasticsearchPlugin\Exception\TaxonNotFoundException {#6950 -statusCode: 404 -headers: [] }
$localeCode = $this->localeContext->getLocaleCode();/** @var TaxonInterface|null $taxon */$taxon = $this->taxonRepository->findOneBySlug($slug, $localeCode);if (null === $slug || null === $taxon) {throw new TaxonNotFoundException();}return $taxon;}}
in
vendor/bitbag/elasticsearch-plugin/src/Controller/RequestDataHandler/ShopProductListDataHandler.php
->
getTaxon
(line 36)
}public function retrieveData(array $requestData): array{$data = [];$taxon = $this->taxonContext->getTaxon();$data[$this->namePropertyPrefix] = (string) $requestData[$this->namePropertyPrefix];$data[$this->taxonsProperty] = strtolower((string) $taxon->getCode());$data['taxon'] = $taxon;$data = array_merge(
in
vendor/bitbag/elasticsearch-plugin/src/QueryBuilder/FormQueryBuilder/TaxonFacetsQueryBuilder.php
->
retrieveData
(line 35)
$eventData = $event->getData();if (!isset($eventData[$namePropertyPrefix])) {$eventData[$namePropertyPrefix] = '';}$data = $this->shopProductListDataHandler->retrieveData($eventData);/** @var Query\BoolQuery $boolQuery */$boolQuery = $this->searchProductsQueryBuilder->buildQuery($data);foreach ($data['facets'] ?? [] as $facetId => $selectedBuckets) {
in
vendor/bitbag/elasticsearch-plugin/src/Form/Resolver/ProductsFilterFacetResolver.php
->
getQuery
(line 30)
) {}public function resolveFacets(FormEvent $event, string $namePropertyPrefix): Pagerfanta{$query = $this->queryBuilder->getQuery($event, $namePropertyPrefix);foreach ($this->facetRegistry->getFacets() as $facetId => $facet) {$query->addAggregation($facet->getAggregation()->setName((string) $facetId));}
in
vendor/bitbag/elasticsearch-plugin/src/Form/EventSubscriber/AddFacetsEventSubscriber.php
->
resolveFacets
(line 44)
}public function addFacets(FormEvent $event): void{$this->autoDiscoverRegistry->autoRegister();$adapter = $this->facetsResolver->resolveFacets($event, $this->namePropertyPrefix)->getAdapter();$this->modifyForm($event->getForm(), $adapter);}private function modifyForm(FormInterface $form, AdapterInterface $adapter): void
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
addFacets
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php
->
dispatch
(line 28)
) {}public function dispatch(object $event, ?string $eventName = null): object{return $this->dispatcher->dispatch($event, $eventName);}public function addListener(string $eventName, callable|array $listener, int $priority = 0): never{throw new \BadMethodCallException('Unmodifiable event dispatchers must not be modified.');
in
vendor/symfony/form/Form.php
->
dispatch
(line 476)
}// Hook to change content of the data submitted by the browserif ($dispatcher->hasListeners(FormEvents::PRE_SUBMIT)) {$event = new PreSubmitEvent($this, $submittedData);$dispatcher->dispatch($event, FormEvents::PRE_SUBMIT);$submittedData = $event->getData();}// Check whether the form is compound.// This check is preferable over checking the number of children,
in
vendor/sylius/resource-bundle/src/Bundle/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php
->
submit
(line 110)
} else {$data = $params ?: $files;}}$form->submit($data, 'PATCH' !== $method);}public function isFileUpload(mixed $data): bool{return $data instanceof File;
in
vendor/symfony/form/Form.php
->
handleRequest
(line 414)
return $this;}public function handleRequest(mixed $request = null): static{$this->config->getRequestHandler()->handleRequest($this, $request);return $this;}public function submit(mixed $submittedData, bool $clearMissing = true): static
in
vendor/bitbag/elasticsearch-plugin/src/Controller/Action/Shop/TaxonProductsSearchAction.php
->
handleRequest
(line 25)
{public function __invoke(Request $request): Response{$template = $request->get('template');$form = $this->formFactory->create(ShopProductsFilterType::class);$form->handleRequest($request);$requestData = array_merge($form->getData(),$request->query->all(),['slug' => $request->get('slug')]
in
vendor/symfony/http-kernel/HttpKernel.php
->
__invoke
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse Elesto\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 05:18:50 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. {
"exception": {}
}
|
| INFO 05:18:50 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. {
"exception": {}
}
|
| INFO 05:18:50 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"idle_connection_ttl": 600,
"host": "172.16.8.22",
"port": 3306,
"user": "synolia-syliusdemo-val",
"password": "<redacted>",
"driverOptions": [],
"defaultTableOptions": {
"collation": "utf8mb4_unicode_ci"
},
"dbname": "eurodislog",
"charset": "utf8mb4"
}
}
|
| INFO 05:18:50 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "475c59"
},
"request_uri": "https://eurodislog.val-sylius-demo.synocloud.com/_profiler/475c59",
"method": "GET"
}
|
| DEBUG 05:18:50 | doctrine |
Executing statement: 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.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.login_required AS login_required_18, t0.rfq_admin_emails AS rfq_admin_emails_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33, t0.shop_billing_data_id AS shop_billing_data_id_34, t0.channel_price_history_config_id AS channel_price_history_config_id_35 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id WHERE t0.hostname = ? AND t0.enabled = ? ORDER BY t0.id ASC LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "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.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.login_required AS login_required_18, t0.rfq_admin_emails AS rfq_admin_emails_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33, t0.shop_billing_data_id AS shop_billing_data_id_34, t0.channel_price_history_config_id AS channel_price_history_config_id_35 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id WHERE t0.hostname = ? AND t0.enabled = ? ORDER BY t0.id ASC LIMIT 1",
"params": {
"1": "eurodislog.val-sylius-demo.synocloud.com",
"2": 1
},
"types": {
"1": 2,
"2": 5
}
}
|
| DEBUG 05:18:50 | doctrine |
Executing query: SELECT COUNT(*) FROM sylius_channel t0 {
"sql": "SELECT COUNT(*) FROM sylius_channel t0"
}
|
| DEBUG 05:18:50 | doctrine |
Executing query: 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.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.login_required AS login_required_18, t0.rfq_admin_emails AS rfq_admin_emails_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33, t0.shop_billing_data_id AS shop_billing_data_id_34, t0.channel_price_history_config_id AS channel_price_history_config_id_35 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id LIMIT 1 {
"sql": "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.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.login_required AS login_required_18, t0.rfq_admin_emails AS rfq_admin_emails_19, t0.default_locale_id AS default_locale_id_20, t21.code AS code_22, t21.created_at AS created_at_23, t21.updated_at AS updated_at_24, t21.id AS id_25, t0.base_currency_id AS base_currency_id_26, t27.code AS code_28, t27.created_at AS created_at_29, t27.updated_at AS updated_at_30, t27.id AS id_31, t0.default_tax_zone_id AS default_tax_zone_id_32, t0.menu_taxon_id AS menu_taxon_id_33, t0.shop_billing_data_id AS shop_billing_data_id_34, t0.channel_price_history_config_id AS channel_price_history_config_id_35 FROM sylius_channel t0 INNER JOIN sylius_locale t21 ON t0.default_locale_id = t21.id INNER JOIN sylius_currency t27 ON t0.base_currency_id = t27.id LIMIT 1"
}
|
| DEBUG 05:18:50 | security |
Checking for authenticator support. {
"firewall_name": "shop",
"authenticators": 3
}
|
| DEBUG 05:18:50 | security |
Checking support on authenticator. {
"firewall_name": "shop",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 05:18:50 | security |
Authenticator does not support the request. {
"firewall_name": "shop",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 05:18:50 | security |
Checking support on authenticator. {
"firewall_name": "shop",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 05:18:50 | security |
Authenticator does not support the request. {
"firewall_name": "shop",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 05:18:50 | security |
Checking support on authenticator. {
"firewall_name": "shop",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 05:18:50 | security |
Authenticator does not support the request. {
"firewall_name": "shop",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 05:18:50 | doctrine |
Executing statement: 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 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ? (parameters: {params}, types: {types}) {
"sql": "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 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ?",
"params": {
"1": 2
},
"types": {
"1": 1
}
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Elesto\EventSubscriber\MaintenanceModeSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Elesto\\EventSubscriber\\MaintenanceModeSubscriber::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\WishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\WishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\PlusRbacPlugin\Infrastructure\EventListener\PermissionCheckerListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\PlusRbacPlugin\\Infrastructure\\EventListener\\PermissionCheckerListener::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Elesto\EventSubscriber\LeadFormModalSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Elesto\\EventSubscriber\\LeadFormModalSubscriber::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". {
"event": "kernel.request",
"listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 05:18:50 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 05:18:50 | 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 05:18:50 | 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 05:18:50 | event |
Notified event "kernel.controller_arguments" to listener "ContainerVoxlsFY\RequestPayloadValueResolverGhostC2bcfb4::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerVoxlsFY\\RequestPayloadValueResolverGhostC2bcfb4::onKernelControllerArguments"
}
|
| DEBUG 05:18:50 | 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:42
at BitBag\SyliusElasticsearchPlugin\Context\TaxonContext->getTaxon()
(vendor/bitbag/elasticsearch-plugin/src/Controller/RequestDataHandler/ShopProductListDataHandler.php:36)
at BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler\ShopProductListDataHandler->retrieveData()
(vendor/bitbag/elasticsearch-plugin/src/QueryBuilder/FormQueryBuilder/TaxonFacetsQueryBuilder.php:35)
at BitBag\SyliusElasticsearchPlugin\QueryBuilder\FormQueryBuilder\TaxonFacetsQueryBuilder->getQuery()
(vendor/bitbag/elasticsearch-plugin/src/Form/Resolver/ProductsFilterFacetResolver.php:30)
at BitBag\SyliusElasticsearchPlugin\Form\Resolver\ProductsFilterFacetResolver->resolveFacets()
(vendor/bitbag/elasticsearch-plugin/src/Form/EventSubscriber/AddFacetsEventSubscriber.php:44)
at BitBag\SyliusElasticsearchPlugin\Form\EventSubscriber\AddFacetsEventSubscriber->addFacets()
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php:28)
at Symfony\Component\EventDispatcher\ImmutableEventDispatcher->dispatch()
(vendor/symfony/form/Form.php:476)
at Symfony\Component\Form\Form->submit()
(vendor/sylius/resource-bundle/src/Bundle/Form/Extension/HttpFoundation/HttpFoundationRequestHandler.php:110)
at Sylius\Bundle\ResourceBundle\Form\Extension\HttpFoundation\HttpFoundationRequestHandler->handleRequest()
(vendor/symfony/form/Form.php:414)
at Symfony\Component\Form\Form->handleRequest()
(vendor/bitbag/elasticsearch-plugin/src/Controller/Action/Shop/TaxonProductsSearchAction.php:25)
at BitBag\SyliusElasticsearchPlugin\Controller\Action\Shop\TaxonProductsSearchAction->__invoke()
(vendor/symfony/http-kernel/HttpKernel.php:183)
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:182)
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('/app/vendor/autoload_runtime.php')
(public/index.php:5)
|