Exceptions
Exception
Elastica\Exception\ ResponseException
in
vendor/ruflin/elastica/src/Transport/Http.php
(line 178)
if ($connection->hasConfig('bigintConversion')) {
$response->setJsonBigintConversion($connection->getConfig('bigintConversion'));
}
if ($response->hasError()) {
throw new ResponseException($request, $response);
}
if ($response->hasFailedShards()) {
throw new PartialShardFailureException($request, $response);
}
in
vendor/ruflin/elastica/src/Request.php
->
exec
(line 183)
public function send(): Response
{
$transport = $this->getConnection()->getTransportObject();
// Refactor: Not full toArray needed in exec?
return $transport->exec($this, $this->getConnection()->toArray());
}
/**
* @return array
*/
in
vendor/ruflin/elastica/src/Client.php
->
send
(line 545)
$connection = $this->getConnection();
$request = $this->_lastRequest = new Request($path, $method, $data, $query, $connection, $contentType);
$this->_lastResponse = null;
try {
$response = $this->_lastResponse = $request->send();
} catch (ConnectionException $e) {
$this->_connectionPool->onFail($connection, $e, $this);
$this->_logger->error('Elastica Request Failure', [
'exception' => $e,
'request' => $e->getRequest()->toArray(),
in
vendor/friendsofsymfony/elastica-bundle/src/Elastica/Client.php
->
request
(line 63)
if ($this->stopwatch) {
$this->stopwatch->start('es_request', 'fos_elastica');
}
try {
$response = parent::request($path, $method, $data, $query, $contentType);
} catch (ExceptionInterface $e) {
$this->logQuery($path, $method, $data, $query, 0, 0, 0);
throw $e;
}
in
vendor/ruflin/elastica/src/Search.php
->
request
(line 352)
unset($params[self::OPTION_SCROLL_ID]);
} else {
$data = $query->toArray();
}
$response = $this->getClient()->request($path, $method, $data, $params);
return $this->builder->buildResultSet($response, $query);
}
/**
in
vendor/ruflin/elastica/src/Index.php
->
search
(line 546)
*/
public function search($query = '', $options = null, string $method = Request::POST): ResultSet
{
$search = $this->createSearch($query, $options);
return $search->search('', null, $method);
}
/**
* {@inheritdoc}
*/
in
vendor/friendsofsymfony/elastica-bundle/src/Finder/TransformedFinder.php
->
search
(line 117)
$queryObject = Query::create($query);
if (null !== $limit) {
$queryObject->setSize($limit);
}
return $this->searchable->search($queryObject, $options)->getResults();
}
}
in
vendor/friendsofsymfony/elastica-bundle/src/Finder/TransformedFinder.php
->
search
(line 43)
$this->transformer = $transformer;
}
public function find($query, ?int $limit = null, array $options = [])
{
$results = $this->search($query, $limit, $options);
return $this->transformer->transform($results);
}
public function findHybrid($query, ?int $limit = null, array $options = [])
in
vendor/bitbag/elasticsearch-plugin/src/Finder/ProductAttributesFinder.php
->
find
(line 44)
$data = [];
$data[$this->taxonsProperty] = strtolower($taxon->getCode());
$query = $this->attributesByTaxonQueryBuilder->buildQuery($data);
return $this->attributesFinder->find($query, 20);
}
}
in
vendor/bitbag/elasticsearch-plugin/src/Context/ProductAttributesContext.php
->
findByTaxon
(line 35)
public function getAttributes(): ?array
{
$taxon = $this->taxonContext->getTaxon();
return $this->attributesFinder->findByTaxon($taxon);
}
}
in
vendor/bitbag/elasticsearch-plugin/src/Form/Type/ProductAttributesFilterType.php
->
getAttributes
(line 45)
$this->excludedAttributes = $excludedAttributes;
}
public function buildForm(FormBuilderInterface $builder, array $attributes): void
{
foreach ($this->productAttributesContext->getAttributes() as $productAttribute) {
if (in_array($productAttribute->getCode(), $this->excludedAttributes)) {
continue;
}
$name = $this->attributeNameResolver->resolvePropertyName($productAttribute->getCode());
in
vendor/symfony/form/ResolvedFormType.php
->
buildForm
(line 131)
{
if (null !== $this->parent) {
$this->parent->buildForm($builder, $options);
}
$this->innerType->buildForm($builder, $options);
foreach ($this->typeExtensions as $extension) {
$extension->buildForm($builder, $options);
}
}
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildForm
(line 95)
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$this->proxiedType->buildForm($builder, $options);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/form/FormFactory.php
->
buildForm
(line 73)
$builder = $type->createBuilder($this, $name, $options);
// Explicitly call buildForm() in order to be able to override either
// createBuilder() or buildForm() in the resolved form type
$type->buildForm($builder, $builder->getOptions());
return $builder;
}
/**
in
vendor/symfony/form/FormBuilder.php
->
createNamedBuilder
(line 97)
if (null === $type && null === $this->getDataClass()) {
$type = TextType::class;
}
if (null !== $type) {
return $this->getFormFactory()->createNamedBuilder($name, $type, null, $options);
}
return $this->getFormFactory()->createBuilderForProperty($this->getDataClass(), $name, null, $options);
}
in
vendor/symfony/form/FormBuilder.php
->
create
(line 240)
{
[$type, $options] = $this->unresolvedChildren[$name];
unset($this->unresolvedChildren[$name]);
return $this->children[$name] = $this->create($name, $type, $options);
}
/**
* Converts all unresolved children into {@link FormBuilder} instances.
*/
in
vendor/symfony/form/FormBuilder.php
->
resolveChild
(line 113)
if ($this->locked) {
throw new BadMethodCallException('FormBuilder methods cannot be accessed anymore once the builder is turned into a FormConfigInterface instance.');
}
if (isset($this->unresolvedChildren[$name])) {
return $this->resolveChild($name);
}
if (isset($this->children[$name])) {
return $this->children[$name];
}
FormBuilder->get('attributes')
in
src/Component/Elasticsearch/Form/Extension/ShopProductsFilterTypeExtension.php
(line 24)
) {
}
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder->get('attributes')->addEventListener(FormEvents::POST_SET_DATA, [$this, 'registerFacets']);
$builder->addEventListener(FormEvents::PRE_SUBMIT, [$this, 'renameFacets'], -255);
}
public function registerFacets(): void
{
in
vendor/symfony/form/ResolvedFormType.php
->
buildForm
(line 134)
}
$this->innerType->buildForm($builder, $options);
foreach ($this->typeExtensions as $extension) {
$extension->buildForm($builder, $options);
}
}
/**
* {@inheritdoc}
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildForm
(line 95)
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$this->proxiedType->buildForm($builder, $options);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/form/FormFactory.php
->
buildForm
(line 73)
$builder = $type->createBuilder($this, $name, $options);
// Explicitly call buildForm() in order to be able to override either
// createBuilder() or buildForm() in the resolved form type
$type->buildForm($builder, $builder->getOptions());
return $builder;
}
/**
in
vendor/symfony/form/FormFactory.php
->
createNamedBuilder
(line 55)
/**
* {@inheritdoc}
*/
public function createBuilder(string $type = FormType::class, $data = null, array $options = [])
{
return $this->createNamedBuilder($this->registry->getType($type)->getBlockPrefix(), $type, $data, $options);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/form/FormFactory.php
->
createBuilder
(line 31)
/**
* {@inheritdoc}
*/
public function create(string $type = FormType::class, $data = null, array $options = [])
{
return $this->createBuilder($type, $data, $options)->getForm();
}
/**
* {@inheritdoc}
*/
FormFactory->create('BitBag\\SyliusElasticsearchPlugin\\Form\\Type\\ShopProductsFilterType')
in
src/Component/Elasticsearch/Controller/ListProductsAction.php
(line 48)
if (null !== $redirectResponse) {
return $redirectResponse;
}
$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 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 23:25:24 | php |
User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead. { "exception": {} } |
INFO 23:25:24 | php |
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 23:25:24 | php |
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 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: The listener "ApiPlatform\Core\EventListener\ReadListener" is deprecated and will be replaced by "ApiPlatform\Symfony\EventListener\ReadListener" in 3.0. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: The $exceptionOnNoToken parameter in "ApiPlatform\Symfony\Security\ResourceAccessChecker::__construct()" is deprecated and will always be false in 3.0, you should stop using it. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Using "api_platform.iri_converter.legacy" is deprecated since API Platform 2.7. Use "ApiPlatform\Api\IriConverterInterface" instead. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: The DataTransformer pattern is deprecated, use a Provider or a Processor and either use your input or return a new output there. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: The DataTransformer pattern is deprecated, use a Provider or a Processor and either use your input or return a new output there. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 23:25:24 | 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 23:25:24 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. { "exception": {} } |
INFO 23:25:24 | 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 23:25:24 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://hyfindrdev.com/_profiler/latest", "method": "GET" } |
DEBUG 23:25:24 | security |
Checking for authenticator support. { "firewall_name": "shop", "authenticators": 2 } |
DEBUG 23:25:24 | security |
Checking support on authenticator. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 23:25:24 | security |
Authenticator does not support the request. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 23:25:24 | security |
Checking support on authenticator. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 23:25:24 | security |
Authenticator does not support the request. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 23:25:24 | 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.google_analytics_code AS google_analytics_code_17, t0.google_tag_manager_id AS google_tag_manager_id_18, t0.brevo_api_key AS brevo_api_key_19, t0.accounting_email_address AS accounting_email_address_20, t0.brevo_directory_id AS brevo_directory_id_21, t0.crfq_free_quota_to_receive AS crfq_free_quota_to_receive_22, t0.crfq_free_quota_to_create AS crfq_free_quota_to_create_23, t0.is_crfq_enabled AS is_crfq_enabled_24, t0.brevo_test_mode AS brevo_test_mode_25, t0.is_vendor_stats_menu_enabled AS is_vendor_stats_menu_enabled_26, t0.voiceflow_api_key AS voiceflow_api_key_27, t0.voiceflow_version AS voiceflow_version_28, t0.default_locale_id AS default_locale_id_29, t30.code AS code_31, t30.created_at AS created_at_32, t30.updated_at AS updated_at_33, t30.id AS id_34, t30.enabled AS enabled_35, t30.push_loco AS push_loco_36, t30.pull_loco AS pull_loco_37, t0.base_currency_id AS base_currency_id_38, t39.code AS code_40, t39.created_at AS created_at_41, t39.updated_at AS updated_at_42, t39.id AS id_43, t0.default_tax_zone_id AS default_tax_zone_id_44, t0.menu_taxon_id AS menu_taxon_id_45, t0.referenceable_content_id AS referenceable_content_id_46, t0.shop_billing_data_id AS shop_billing_data_id_47 FROM sylius_channel t0 INNER JOIN sylius_locale t30 ON t0.default_locale_id = t30.id INNER JOIN sylius_currency t39 ON t0.base_currency_id = t39.id WHERE t0.hostname = ? AND t0.enabled = ? LIMIT 1 [ "hyfindrdev.com", true ] |
DEBUG 23:25:24 | 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 FROM sylius_currency t0 INNER JOIN sylius_channel_currencies ON t0.id = sylius_channel_currencies.currency_id WHERE sylius_channel_currencies.channel_id = ? ORDER BY t0.id ASC [ 1 ] |
DEBUG 23:25:24 | 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.enabled AS enabled_5, t0.push_loco AS push_loco_6, t0.pull_loco AS pull_loco_7 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 23:25:24 | doctrine |
SELECT t0.code AS code_1, t0.enabled AS enabled_2, t0.id AS id_3 FROM sylius_country t0 INNER JOIN sylius_channel_countries ON t0.id = sylius_channel_countries.country_id WHERE sylius_channel_countries.channel_id = ? [ 1 ] |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\SyliusWishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\SyliusWishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Stripe\Event\VendorCheckListener::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Stripe\\Event\\VendorCheckListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Acl\EventListener\AclListener::__invoke". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Acl\\EventListener\\AclListener::__invoke" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 23:25:24 | 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.google_analytics_code AS google_analytics_code_17, t0.google_tag_manager_id AS google_tag_manager_id_18, t0.brevo_api_key AS brevo_api_key_19, t0.accounting_email_address AS accounting_email_address_20, t0.brevo_directory_id AS brevo_directory_id_21, t0.crfq_free_quota_to_receive AS crfq_free_quota_to_receive_22, t0.crfq_free_quota_to_create AS crfq_free_quota_to_create_23, t0.is_crfq_enabled AS is_crfq_enabled_24, t0.brevo_test_mode AS brevo_test_mode_25, t0.is_vendor_stats_menu_enabled AS is_vendor_stats_menu_enabled_26, t0.voiceflow_api_key AS voiceflow_api_key_27, t0.voiceflow_version AS voiceflow_version_28, t0.default_locale_id AS default_locale_id_29, t30.code AS code_31, t30.created_at AS created_at_32, t30.updated_at AS updated_at_33, t30.id AS id_34, t30.enabled AS enabled_35, t30.push_loco AS push_loco_36, t30.pull_loco AS pull_loco_37, t0.base_currency_id AS base_currency_id_38, t39.code AS code_40, t39.created_at AS created_at_41, t39.updated_at AS updated_at_42, t39.id AS id_43, t0.default_tax_zone_id AS default_tax_zone_id_44, t0.menu_taxon_id AS menu_taxon_id_45, t0.referenceable_content_id AS referenceable_content_id_46, t0.shop_billing_data_id AS shop_billing_data_id_47 FROM sylius_channel t0 INNER JOIN sylius_locale t30 ON t0.default_locale_id = t30.id INNER JOIN sylius_currency t39 ON t0.base_currency_id = t39.id |
DEBUG 23:25:24 | 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_.keep_query_string AS keep_query_string_7, s0_.created_at AS created_at_8, s0_.updated_at AS updated_at_9, s0_.id AS id_10, s1_.code AS code_11, s1_.name AS name_12, s1_.color AS color_13, s1_.description AS description_14, s1_.enabled AS enabled_15, s1_.hostname AS hostname_16, s1_.created_at AS created_at_17, s1_.updated_at AS updated_at_18, s1_.id AS id_19, s1_.theme_name AS theme_name_20, s1_.tax_calculation_strategy AS tax_calculation_strategy_21, s1_.contact_email AS contact_email_22, s1_.contact_phone_number AS contact_phone_number_23, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_24, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_25, s1_.account_verification_required AS account_verification_required_26, s1_.google_analytics_code AS google_analytics_code_27, s1_.google_tag_manager_id AS google_tag_manager_id_28, s1_.brevo_api_key AS brevo_api_key_29, s1_.accounting_email_address AS accounting_email_address_30, s1_.brevo_directory_id AS brevo_directory_id_31, s1_.crfq_free_quota_to_receive AS crfq_free_quota_to_receive_32, s1_.crfq_free_quota_to_create AS crfq_free_quota_to_create_33, s1_.is_crfq_enabled AS is_crfq_enabled_34, s1_.brevo_test_mode AS brevo_test_mode_35, s1_.is_vendor_stats_menu_enabled AS is_vendor_stats_menu_enabled_36, s1_.voiceflow_api_key AS voiceflow_api_key_37, s1_.voiceflow_version AS voiceflow_version_38, s1_.default_locale_id AS default_locale_id_39, s1_.base_currency_id AS base_currency_id_40, s1_.default_tax_zone_id AS default_tax_zone_id_41, s1_.menu_taxon_id AS menu_taxon_id_42, s1_.referenceable_content_id AS referenceable_content_id_43, s1_.shop_billing_data_id AS shop_billing_data_id_44 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 = ? ORDER BY s0_.id ASC [ "/_profiler/latest", false ] |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Setono\SyliusRedirectPlugin\EventListener\ControllerSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Setono\\SyliusRedirectPlugin\\EventListener\\ControllerSubscriber::onKernelController" } |
DEBUG 23:25:24 | 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" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\SyliusWishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\SyliusWishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Stripe\Event\VendorCheckListener::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Stripe\\Event\\VendorCheckListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Acl\EventListener\AclListener::__invoke". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Acl\\EventListener\\AclListener::__invoke" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 23:25:24 | 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_.keep_query_string AS keep_query_string_7, s0_.created_at AS created_at_8, s0_.updated_at AS updated_at_9, s0_.id AS id_10, s1_.code AS code_11, s1_.name AS name_12, s1_.color AS color_13, s1_.description AS description_14, s1_.enabled AS enabled_15, s1_.hostname AS hostname_16, s1_.created_at AS created_at_17, s1_.updated_at AS updated_at_18, s1_.id AS id_19, s1_.theme_name AS theme_name_20, s1_.tax_calculation_strategy AS tax_calculation_strategy_21, s1_.contact_email AS contact_email_22, s1_.contact_phone_number AS contact_phone_number_23, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_24, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_25, s1_.account_verification_required AS account_verification_required_26, s1_.google_analytics_code AS google_analytics_code_27, s1_.google_tag_manager_id AS google_tag_manager_id_28, s1_.brevo_api_key AS brevo_api_key_29, s1_.accounting_email_address AS accounting_email_address_30, s1_.brevo_directory_id AS brevo_directory_id_31, s1_.crfq_free_quota_to_receive AS crfq_free_quota_to_receive_32, s1_.crfq_free_quota_to_create AS crfq_free_quota_to_create_33, s1_.is_crfq_enabled AS is_crfq_enabled_34, s1_.brevo_test_mode AS brevo_test_mode_35, s1_.is_vendor_stats_menu_enabled AS is_vendor_stats_menu_enabled_36, s1_.voiceflow_api_key AS voiceflow_api_key_37, s1_.voiceflow_version AS voiceflow_version_38, s1_.default_locale_id AS default_locale_id_39, s1_.base_currency_id AS base_currency_id_40, s1_.default_tax_zone_id AS default_tax_zone_id_41, s1_.menu_taxon_id AS menu_taxon_id_42, s1_.referenceable_content_id AS referenceable_content_id_43, s1_.shop_billing_data_id AS shop_billing_data_id_44 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 = ? ORDER BY s0_.id ASC [ "/_fragment", false ] |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Setono\SyliusRedirectPlugin\EventListener\ControllerSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Setono\\SyliusRedirectPlugin\\EventListener\\ControllerSubscriber::onKernelController" } |
DEBUG 23:25:24 | 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 23:25:24 | php |
User Deprecated: Since sonata-project/block-bundle 4.11: The "sonata.block.cache.handler.default" service is deprecated since sonata-project/block-bundle 4.11 and will be removed in 5.0. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Bridge\Monolog\Handler\FirePHPHandler::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler::onKernelResponse" } |
DEBUG 23:25:24 | 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 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse". { "event": "kernel.response", "listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "BitBag\SyliusWishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "BitBag\\SyliusWishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\XFrameOptionsSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\XFrameOptionsSubscriber::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\SessionCartSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\SessionCartSubscriber::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ConnectHolland\CookieConsentBundle\EventSubscriber\CookieConsentFormSubscriber::onResponse". { "event": "kernel.response", "listener": "ConnectHolland\\CookieConsentBundle\\EventSubscriber\\CookieConsentFormSubscriber::onResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ContainerZTtxmjp\TrustedCookieResponseListener_c7f9b85::onKernelResponse". { "event": "kernel.response", "listener": "ContainerZTtxmjp\\TrustedCookieResponseListener_c7f9b85::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::removeCspHeader" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ChannelBundle\Context\FakeChannel\FakeChannelPersister::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ChannelBundle\\Context\\FakeChannel\\FakeChannelPersister::onKernelResponse" } |
DEBUG 23:25:24 | 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 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 23:25:24 | event |
Notified event "kernel.finish_request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\SyliusWishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\SyliusWishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Stripe\Event\VendorCheckListener::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Stripe\\Event\\VendorCheckListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Acl\EventListener\AclListener::__invoke". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Acl\\EventListener\\AclListener::__invoke" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 23:25:24 | 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_.keep_query_string AS keep_query_string_7, s0_.created_at AS created_at_8, s0_.updated_at AS updated_at_9, s0_.id AS id_10, s1_.code AS code_11, s1_.name AS name_12, s1_.color AS color_13, s1_.description AS description_14, s1_.enabled AS enabled_15, s1_.hostname AS hostname_16, s1_.created_at AS created_at_17, s1_.updated_at AS updated_at_18, s1_.id AS id_19, s1_.theme_name AS theme_name_20, s1_.tax_calculation_strategy AS tax_calculation_strategy_21, s1_.contact_email AS contact_email_22, s1_.contact_phone_number AS contact_phone_number_23, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_24, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_25, s1_.account_verification_required AS account_verification_required_26, s1_.google_analytics_code AS google_analytics_code_27, s1_.google_tag_manager_id AS google_tag_manager_id_28, s1_.brevo_api_key AS brevo_api_key_29, s1_.accounting_email_address AS accounting_email_address_30, s1_.brevo_directory_id AS brevo_directory_id_31, s1_.crfq_free_quota_to_receive AS crfq_free_quota_to_receive_32, s1_.crfq_free_quota_to_create AS crfq_free_quota_to_create_33, s1_.is_crfq_enabled AS is_crfq_enabled_34, s1_.brevo_test_mode AS brevo_test_mode_35, s1_.is_vendor_stats_menu_enabled AS is_vendor_stats_menu_enabled_36, s1_.voiceflow_api_key AS voiceflow_api_key_37, s1_.voiceflow_version AS voiceflow_version_38, s1_.default_locale_id AS default_locale_id_39, s1_.base_currency_id AS base_currency_id_40, s1_.default_tax_zone_id AS default_tax_zone_id_41, s1_.menu_taxon_id AS menu_taxon_id_42, s1_.referenceable_content_id AS referenceable_content_id_43, s1_.shop_billing_data_id AS shop_billing_data_id_44 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 = ? ORDER BY s0_.id ASC [ "/_fragment", false ] |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Setono\SyliusRedirectPlugin\EventListener\ControllerSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Setono\\SyliusRedirectPlugin\\EventListener\\ControllerSubscriber::onKernelController" } |
DEBUG 23:25:24 | 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" } |
DEBUG 23:25:24 | snc_redis | Executing command "CONNECT redis 6379 5 <null>" |
DEBUG 23:25:24 | snc_redis | Executing command "AUTH nopassword" |
DEBUG 23:25:24 | snc_redis | Executing command "SELECT 1" |
DEBUG 23:25:24 | snc_redis | Executing command "GET sf_s7f46643d14674a590a685f6e60fad794" |
INFO 23:25:24 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 23:25:24 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Bridge\Monolog\Handler\FirePHPHandler::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler::onKernelResponse" } |
DEBUG 23:25:24 | 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 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse". { "event": "kernel.response", "listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "BitBag\SyliusWishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "BitBag\\SyliusWishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\XFrameOptionsSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\XFrameOptionsSubscriber::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\SessionCartSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\SessionCartSubscriber::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ConnectHolland\CookieConsentBundle\EventSubscriber\CookieConsentFormSubscriber::onResponse". { "event": "kernel.response", "listener": "ConnectHolland\\CookieConsentBundle\\EventSubscriber\\CookieConsentFormSubscriber::onResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ContainerZTtxmjp\TrustedCookieResponseListener_c7f9b85::onKernelResponse". { "event": "kernel.response", "listener": "ContainerZTtxmjp\\TrustedCookieResponseListener_c7f9b85::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::removeCspHeader" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelResponse" } |
DEBUG 23:25:24 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ChannelBundle\Context\FakeChannel\FakeChannelPersister::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ChannelBundle\\Context\\FakeChannel\\FakeChannelPersister::onKernelResponse" } |
DEBUG 23:25:24 | 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 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 23:25:24 | 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 23:25:24 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 23:25:24 | event |
Notified event "kernel.finish_request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\SyliusWishlistPlugin\EventSubscriber\CreateNewWishlistSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\SyliusWishlistPlugin\\EventSubscriber\\CreateNewWishlistSubscriber::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Stripe\Event\VendorCheckListener::onKernelRequest". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Stripe\\Event\\VendorCheckListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "BitBag\OpenMarketplace\Component\Acl\EventListener\AclListener::__invoke". { "event": "kernel.request", "listener": "BitBag\\OpenMarketplace\\Component\\Acl\\EventListener\\AclListener::__invoke" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 23:25:24 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 23:25:24 | 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_.keep_query_string AS keep_query_string_7, s0_.created_at AS created_at_8, s0_.updated_at AS updated_at_9, s0_.id AS id_10, s1_.code AS code_11, s1_.name AS name_12, s1_.color AS color_13, s1_.description AS description_14, s1_.enabled AS enabled_15, s1_.hostname AS hostname_16, s1_.created_at AS created_at_17, s1_.updated_at AS updated_at_18, s1_.id AS id_19, s1_.theme_name AS theme_name_20, s1_.tax_calculation_strategy AS tax_calculation_strategy_21, s1_.contact_email AS contact_email_22, s1_.contact_phone_number AS contact_phone_number_23, s1_.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_24, s1_.skipping_payment_step_allowed AS skipping_payment_step_allowed_25, s1_.account_verification_required AS account_verification_required_26, s1_.google_analytics_code AS google_analytics_code_27, s1_.google_tag_manager_id AS google_tag_manager_id_28, s1_.brevo_api_key AS brevo_api_key_29, s1_.accounting_email_address AS accounting_email_address_30, s1_.brevo_directory_id AS brevo_directory_id_31, s1_.crfq_free_quota_to_receive AS crfq_free_quota_to_receive_32, s1_.crfq_free_quota_to_create AS crfq_free_quota_to_create_33, s1_.is_crfq_enabled AS is_crfq_enabled_34, s1_.brevo_test_mode AS brevo_test_mode_35, s1_.is_vendor_stats_menu_enabled AS is_vendor_stats_menu_enabled_36, s1_.voiceflow_api_key AS voiceflow_api_key_37, s1_.voiceflow_version AS voiceflow_version_38, s1_.default_locale_id AS default_locale_id_39, s1_.base_currency_id AS base_currency_id_40, s1_.default_tax_zone_id AS default_tax_zone_id_41, s1_.menu_taxon_id AS menu_taxon_id_42, s1_.referenceable_content_id AS referenceable_content_id_43, s1_.shop_billing_data_id AS shop_billing_data_id_44 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 = ? ORDER BY s0_.id ASC [ "/_fragment", false ] |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 23:25:24 | event |
Notified event "kernel.controller" to listener "Setono\SyliusRedirectPlugin\EventListener\ControllerSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Setono\\SyliusRedirectPlugin\\EventListener\\ControllerSubscriber::onKernelController" } |
DEBUG 23:25:24 | 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
ResponseException
|
---|
Elastica\Exception\ResponseException: no such index [bitbag_b2b_plugin_attribute_taxons_dev] [index: bitbag_b2b_plugin_attribute_taxons_dev] at vendor/ruflin/elastica/src/Transport/Http.php:178 at Elastica\Transport\Http->exec(object(Request), array('connection' => array('config' => array('url' => 'http://elasticsearch:9200/', 'headers' => array(), 'curl' => array()), 'username' => '', 'password' => '', 'http_error_codes' => array(400, 403, 404), 'ssl' => false, 'logger' => 'fos_elastica.logger', 'compression' => false, 'retryOnConflict' => 0, 'persistent' => true, 'enabled' => true))) (vendor/ruflin/elastica/src/Request.php:183) at Elastica\Request->send() (vendor/ruflin/elastica/src/Client.php:545) at Elastica\Client->request('bitbag_b2b_plugin_attribute_taxons_dev/_search', 'POST', array('query' => array('bool' => array('must' => array(array('terms' => array('attribute_taxons' => array('printed_circuit_heat_exchanger')))))), 'size' => 20), array(), 'application/json') (vendor/friendsofsymfony/elastica-bundle/src/Elastica/Client.php:63) at FOS\ElasticaBundle\Elastica\Client->request('bitbag_b2b_plugin_attribute_taxons_dev/_search', 'POST', array('query' => array('bool' => array('must' => array(array('terms' => array('attribute_taxons' => array('printed_circuit_heat_exchanger')))))), 'size' => 20), array()) (vendor/ruflin/elastica/src/Search.php:352) at Elastica\Search->search(object(Query), null, 'POST') (vendor/ruflin/elastica/src/Index.php:546) at Elastica\Index->search(object(Query), array()) (vendor/friendsofsymfony/elastica-bundle/src/Finder/TransformedFinder.php:117) at FOS\ElasticaBundle\Finder\TransformedFinder->search(object(BoolQuery), 20, array()) (vendor/friendsofsymfony/elastica-bundle/src/Finder/TransformedFinder.php:43) at FOS\ElasticaBundle\Finder\TransformedFinder->find(object(BoolQuery), 20) (vendor/bitbag/elasticsearch-plugin/src/Finder/ProductAttributesFinder.php:44) at BitBag\SyliusElasticsearchPlugin\Finder\ProductAttributesFinder->findByTaxon(object(Taxon)) (vendor/bitbag/elasticsearch-plugin/src/Context/ProductAttributesContext.php:35) at BitBag\SyliusElasticsearchPlugin\Context\ProductAttributesContext->getAttributes() (vendor/bitbag/elasticsearch-plugin/src/Form/Type/ProductAttributesFilterType.php:45) at BitBag\SyliusElasticsearchPlugin\Form\Type\ProductAttributesFilterType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => true, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'compound' => true, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'This value is not valid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => true, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => false, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'data_class', null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array(), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'empty_data' => object(Closure), 'required' => false, 'error_bubbling' => true, 'label_attr' => array(), 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'legacy_error_messages' => true)) (vendor/symfony/form/ResolvedFormType.php:131) at Symfony\Component\Form\ResolvedFormType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => true, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'compound' => true, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'This value is not valid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => true, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => false, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'data_class', null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array(), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'empty_data' => object(Closure), 'required' => false, 'error_bubbling' => true, 'label_attr' => array(), 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'legacy_error_messages' => true)) (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95) at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => true, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'compound' => true, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'This value is not valid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => true, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => false, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'data_class', null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array(), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'empty_data' => object(Closure), 'required' => false, 'error_bubbling' => true, 'label_attr' => array(), 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'legacy_error_messages' => true)) (vendor/symfony/form/FormFactory.php:73) at Symfony\Component\Form\FormFactory->createNamedBuilder('attributes', object(ResolvedTypeDataCollectorProxy), null, array('required' => false, 'label' => false)) (vendor/symfony/form/FormBuilder.php:97) at Symfony\Component\Form\FormBuilder->create('attributes', 'BitBag\\SyliusElasticsearchPlugin\\Form\\Type\\ProductAttributesFilterType', array('required' => false, 'label' => false)) (vendor/symfony/form/FormBuilder.php:240) at Symfony\Component\Form\FormBuilder->resolveChild('attributes') (vendor/symfony/form/FormBuilder.php:113) at Symfony\Component\Form\FormBuilder->get('attributes') (src/Component/Elasticsearch/Form/Extension/ShopProductsFilterTypeExtension.php:24) at BitBag\OpenMarketplace\Component\Elasticsearch\Form\Extension\ShopProductsFilterTypeExtension->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label' => null, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => true, 'required' => true, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'compound' => true, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'This value is not valid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => true, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => false, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'data_class', null, 'block_prefix' => null, 'row_attr' => array(), 'label_html' => false, 'attr' => array(), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'empty_data' => object(Closure), 'error_bubbling' => true, 'label_attr' => array(), 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'legacy_error_messages' => true)) (vendor/symfony/form/ResolvedFormType.php:134) at Symfony\Component\Form\ResolvedFormType->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label' => null, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => true, 'required' => true, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'compound' => true, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'This value is not valid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => true, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => false, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'data_class', null, 'block_prefix' => null, 'row_attr' => array(), 'label_html' => false, 'attr' => array(), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'empty_data' => object(Closure), 'error_bubbling' => true, 'label_attr' => array(), 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'legacy_error_messages' => true)) (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:95) at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm(object(FormBuilder), array('block_name' => null, 'disabled' => false, 'label' => null, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => true, 'required' => true, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'compound' => true, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'This value is not valid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => true, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => false, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'data_class', null, 'block_prefix' => null, 'row_attr' => array(), 'label_html' => false, 'attr' => array(), 'priority' => 0, 'form_attr' => false, 'data_class' => null, 'empty_data' => object(Closure), 'error_bubbling' => true, 'label_attr' => array(), 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'validation_groups' => null, 'constraints' => array(), 'legacy_error_messages' => true)) (vendor/symfony/form/FormFactory.php:73) at Symfony\Component\Form\FormFactory->createNamedBuilder('', object(ResolvedTypeDataCollectorProxy), null, array()) (vendor/symfony/form/FormFactory.php:55) at Symfony\Component\Form\FormFactory->createBuilder('BitBag\\SyliusElasticsearchPlugin\\Form\\Type\\ShopProductsFilterType', null, array()) (vendor/symfony/form/FormFactory.php:31) at Symfony\Component\Form\FormFactory->create('BitBag\\SyliusElasticsearchPlugin\\Form\\Type\\ShopProductsFilterType') (src/Component/Elasticsearch/Controller/ListProductsAction.php:48) at BitBag\OpenMarketplace\Component\Elasticsearch\Controller\ListProductsAction->__invoke(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:163) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (public/index.php:25) |