Symfony Exception

Page Not Found

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.     public function onKernelException(ExceptionEvent $event): void
  2.     {
  3.         $throwable $event->getThrowable();
  4.         if ($throwable instanceof NotValidCurrentPageException) {
  5.             $event->setThrowable(new NotFoundHttpException('Page Not Found'$throwable));
  6.         }
  7.     }
  8. }
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php -> handleThrowable (line 86)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleThrowable($e$request$type);
  5.         } finally {
  6.             $this->requestStack->pop();
  7.         }
  8.     }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Pagerfanta\Exception\ OutOfRangeCurrentPageException

Page "2" does not exist. The currentPage must be inferior to "1"

  1.     {
  2.         if ($this->getNormalizeOutOfRangePages()) {
  3.             return $this->getNbPages();
  4.         }
  5.         throw new OutOfRangeCurrentPageException(sprintf('Page "%d" does not exist. The currentPage must be inferior to "%d"'$currentPage$this->getNbPages()));
  6.     }
  7.     private function resetForCurrentPageChange(): void
  8.     {
  9.         $this->currentPageResults null;
in vendor/pagerfanta/pagerfanta/lib/Core/Pagerfanta.php -> normalizeOutOfRangeCurrentPage (line 197)
  1.      * @phpstan-return positive-int
  2.      */
  3.     private function filterOutOfRangeCurrentPage(int $currentPage): int
  4.     {
  5.         if ($this->notAllowedCurrentPageOutOfRange($currentPage)) {
  6.             return $this->normalizeOutOfRangeCurrentPage($currentPage);
  7.         }
  8.         return $currentPage;
  9.     }
in vendor/pagerfanta/pagerfanta/lib/Core/Pagerfanta.php -> filterOutOfRangeCurrentPage (line 178)
  1.      */
  2.     private function filterCurrentPage(int $currentPage): int
  3.     {
  4.         $this->checkCurrentPage($currentPage);
  5.         return $this->filterOutOfRangeCurrentPage($currentPage);
  6.     }
  7.     /**
  8.      * @throws LessThan1CurrentPageException if the current page is less than 1
  9.      */
  1.      * @throws LessThan1CurrentPageException  if the current page is less than 1
  2.      * @throws OutOfRangeCurrentPageException if It is not allowed out of range pages and they are not normalized
  3.      */
  4.     public function setCurrentPage(int $currentPage): PagerfantaInterface
  5.     {
  6.         $this->currentPage $this->filterCurrentPage($currentPage);
  7.         $this->resetForCurrentPageChange();
  8.         return $this;
  9.     }
  1.         $query = new Query($boolQuery);
  2.         $query->addSort($data[SortDataHandlerInterface::SORT_INDEX]);
  3.         $products $this->productFinder->findPaginated($query);
  4.         $products->setMaxPerPage($data[PaginationDataHandlerInterface::LIMIT_INDEX]);
  5.         $products->setCurrentPage($data[PaginationDataHandlerInterface::PAGE_INDEX]);
  6.         return $products;
  7.     }
  8. }
  1.             $this->shopProductsSortDataHandler->retrieveData($requestData),
  2.             $this->paginationDataHandler->retrieveData($requestData)
  3.         );
  4.         $template $request->get('template');
  5.         $products $this->shopProductsFinder->find($data);
  6.         return new Response($this->twig->render($template, [
  7.             'form' => $form->createView(),
  8.             'products' => $products,
  9.             'taxon' => $data['taxon'],
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 10:37:59 php User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 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 10:37:59 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 10:37:59 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 10:37:59 php User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead.
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication_manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.4: The $autenticationManager argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" is deprecated.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.4: Not setting the 4th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 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 10:37:59 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 10:37:59 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 10:37:59 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 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 10:37:59 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 10:37:59 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 10:37:59 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 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 10:37:59 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 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 10:37:59 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:37:59 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 10:37:59 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 10:37:59 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 10:37:59 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": {}
}
DEBUG 10:37:59 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.default_locale_id AS default_locale_id_17, t18.code AS code_19, t18.created_at AS created_at_20, t18.updated_at AS updated_at_21, t18.id AS id_22, t0.base_currency_id AS base_currency_id_23, t24.code AS code_25, t24.created_at AS created_at_26, t24.updated_at AS updated_at_27, t24.id AS id_28, t0.default_tax_zone_id AS default_tax_zone_id_29, t0.menu_taxon_id AS menu_taxon_id_30, t0.shop_billing_data_id AS shop_billing_data_id_31 FROM sylius_channel t0 INNER JOIN sylius_locale t18 ON t0.default_locale_id = t18.id INNER JOIN sylius_currency t24 ON t0.base_currency_id = t24.id WHERE t0.hostname = ? AND t0.enabled = ? LIMIT 1
[
    "shop.editorialecec.com",
    true
]
DEBUG 10:37:59 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 10:37:59 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_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ?
[
    1
]
DEBUG 10:37:59 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 10:37:59 doctrine SELECT s0_.code AS code_0, s0_.tree_left AS tree_left_1, s0_.tree_right AS tree_right_2, s0_.tree_level AS tree_level_3, s0_.position AS position_4, s0_.enabled AS enabled_5, s0_.id AS id_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s1_.name AS name_9, s1_.slug AS slug_10, s1_.description AS description_11, s1_.id AS id_12, s1_.locale AS locale_13, s0_.tree_root AS tree_root_14, s0_.parent_id AS parent_id_15, s1_.translatable_id AS translatable_id_16 FROM sylius_taxon s0_ INNER JOIN sylius_taxon_translation s1_ ON s0_.id = s1_.translatable_id WHERE s0_.enabled = ? AND s1_.slug = ? AND s1_.locale = ? ORDER BY s0_.id ASC
[
    true,
    "testate/armi-magazine/spec [...]",
    "it_IT"
]
DEBUG 10:37:59 doctrine SELECT t0.id AS id_1, t0.nome AS nome_2, t0.codice AS codice_3, t0.hasDigitalFormat AS hasDigitalFormat_4, t0.hasPaperFormat AS hasPaperFormat_5, t0.chiusa AS chiusa_6, t0.digitalDefaultPrice AS digitalDefaultPrice_7, t0.paperDefaultPrice AS paperDefaultPrice_8, t0.slug AS slug_9, t0.descrizioneTestata AS descrizioneTestata_10, t0.giacenza_copie_cartaceo AS giacenza_copie_cartaceo_11, t0.taxonBase_id AS taxonBase_id_12, t0.taxonTestata_id AS taxonTestata_id_13, t0.taxonAbbonamento_id AS taxonAbbonamento_id_14, t0.taxonArretrato_id AS taxonArretrato_id_15, t0.taxonArretratoDigitale_id AS taxonArretratoDigitale_id_16, t0.taxonLibri_id AS taxonLibri_id_17, t0.taxonVarie_id AS taxonVarie_id_18 FROM testata t0 WHERE t0.taxonTestata_id = ?
[
    94
]
DEBUG 10:37:59 doctrine SELECT t0.id AS id_1, t0.nome AS nome_2, t0.codice AS codice_3, t0.hasDigitalFormat AS hasDigitalFormat_4, t0.hasPaperFormat AS hasPaperFormat_5, t0.chiusa AS chiusa_6, t0.digitalDefaultPrice AS digitalDefaultPrice_7, t0.paperDefaultPrice AS paperDefaultPrice_8, t0.slug AS slug_9, t0.descrizioneTestata AS descrizioneTestata_10, t0.giacenza_copie_cartaceo AS giacenza_copie_cartaceo_11, t0.taxonBase_id AS taxonBase_id_12, t0.taxonTestata_id AS taxonTestata_id_13, t0.taxonAbbonamento_id AS taxonAbbonamento_id_14, t0.taxonArretrato_id AS taxonArretrato_id_15, t0.taxonArretratoDigitale_id AS taxonArretratoDigitale_id_16, t0.taxonLibri_id AS taxonLibri_id_17, t0.taxonVarie_id AS taxonVarie_id_18 FROM testata t0 WHERE t0.taxonAbbonamento_id = ?
[
    94
]
INFO 10:37:59 request Matched route "bitbag_sylius_elasticsearch_plugin_shop_list_products".
{
    "route": "bitbag_sylius_elasticsearch_plugin_shop_list_products",
    "route_parameters": {
        "_route": "bitbag_sylius_elasticsearch_plugin_shop_list_products",
        "_controller": "bitbag_sylius_elasticsearch_plugin.controller.action.shop.list_products",
        "template": "@BitBagSyliusElasticsearchPlugin/Shop/Product/index.html.twig",
        "_locale": "it_IT",
        "slug": "testate/armi-magazine/speciali-e-annuari"
    },
    "request_uri": "https://shop.editorialecec.com/it_IT/testate/armi-magazine/speciali-e-annuari?page=2",
    "method": "GET"
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface" interface is deprecated, use "Symfony\Component\Security\Http\RememberMe\RememberMeHandlerInterface" instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeHandler" instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\TokenBasedRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\SignatureRememberMeHandler" instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: Method "Symfony\Component\Security\Http\Firewall\ContextListener::setRememberMeServices()" is deprecated, use the new remember me handlers instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.shop" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.rememberme.shop" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\RememberMeListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.shop" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.admin" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.rememberme.admin" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\RememberMeAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.admin" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:37:59 security Populated the TokenStorage with an anonymous Token.
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 10:37:59 php User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
DEBUG 10:37:59 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "App\EventListener\KernelRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\KernelRequestListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Setono\SyliusFacebookPlugin\EventListener\InitiateCheckoutSubscriber::track".
{
    "event": "kernel.request",
    "listener": "Setono\\SyliusFacebookPlugin\\EventListener\\InitiateCheckoutSubscriber::track"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Setono\SyliusFacebookPlugin\EventListener\PurchaseSubscriber::track".
{
    "event": "kernel.request",
    "listener": "Setono\\SyliusFacebookPlugin\\EventListener\\PurchaseSubscriber::track"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
INFO 10:37:59 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 10:37:59 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": {}
}
DEBUG 10:37:59 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 10:37:59 doctrine SELECT s0_.code AS code_0, s0_.tree_left AS tree_left_1, s0_.tree_right AS tree_right_2, s0_.tree_level AS tree_level_3, s0_.position AS position_4, s0_.enabled AS enabled_5, s0_.id AS id_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s1_.name AS name_9, s1_.slug AS slug_10, s1_.description AS description_11, s1_.id AS id_12, s1_.locale AS locale_13, s0_.tree_root AS tree_root_14, s0_.parent_id AS parent_id_15, s1_.translatable_id AS translatable_id_16 FROM sylius_taxon s0_ INNER JOIN sylius_taxon_translation s1_ ON s0_.id = s1_.translatable_id WHERE s0_.enabled = ? AND s1_.slug = ? AND s1_.locale = ? ORDER BY s0_.id ASC
[
    true,
    "testate/armi-magazine/spec [...]",
    "it_IT"
]
DEBUG 10:37:59 elastica Elastica Request
{
    "request": {
        "path": "bitbag_option_taxons_prod/_search",
        "method": "POST",
        "data": {
            "query": {
                "bool": {
                    "must": [
                        {
                            "terms": {
                                "option_taxons": [
                                    "speciali_e_annuari_ama"
                                ]
                            }
                        }
                    ]
                }
            },
            "size": 20
        },
        "query": [],
        "contentType": "application/json",
        "connection": {
            "config": {
                "headers": [],
                "curl": []
            },
            "host": "localhost",
            "port": 9200,
            "http_error_codes": [
                400,
                403,
                404
            ],
            "ssl": false,
            "logger": "fos_elastica.logger",
            "compression": false,
            "retryOnConflict": 0,
            "persistent": true,
            "enabled": true
        }
    },
    "response": {
        "took": 0,
        "timed_out": false,
        "_shards": {
            "total": 1,
            "successful": 1,
            "skipped": 0,
            "failed": 0
        },
        "hits": {
            "total": {
                "value": 0,
                "relation": "eq"
            },
            "max_score": null,
            "hits": []
        }
    },
    "responseStatus": 200
}
INFO 10:37:59 elastica bitbag_option_taxons_prod/_search (POST) 1.52 ms
[
    {
        "query": {
            "bool": {
                "must": [
                    {
                        "terms": {
                            "option_taxons": [
                                "speciali_e_annuari_ama"
                            ]
                        }
                    }
                ]
            }
        },
        "size": 20
    }
]
DEBUG 10:37:59 doctrine SELECT s0_.code AS code_0, s0_.tree_left AS tree_left_1, s0_.tree_right AS tree_right_2, s0_.tree_level AS tree_level_3, s0_.position AS position_4, s0_.enabled AS enabled_5, s0_.id AS id_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s1_.name AS name_9, s1_.slug AS slug_10, s1_.description AS description_11, s1_.id AS id_12, s1_.locale AS locale_13, s0_.tree_root AS tree_root_14, s0_.parent_id AS parent_id_15, s1_.translatable_id AS translatable_id_16 FROM sylius_taxon s0_ INNER JOIN sylius_taxon_translation s1_ ON s0_.id = s1_.translatable_id WHERE s0_.enabled = ? AND s1_.slug = ? AND s1_.locale = ? ORDER BY s0_.id ASC
[
    true,
    "testate/armi-magazine/spec [...]",
    "it_IT"
]
DEBUG 10:37:59 elastica Elastica Request
{
    "request": {
        "path": "bitbag_attribute_taxons_prod/_search",
        "method": "POST",
        "data": {
            "query": {
                "bool": {
                    "must": [
                        {
                            "terms": {
                                "attribute_taxons": [
                                    "speciali_e_annuari_ama"
                                ]
                            }
                        }
                    ]
                }
            },
            "size": 20
        },
        "query": [],
        "contentType": "application/json",
        "connection": {
            "config": {
                "headers": [],
                "curl": []
            },
            "host": "localhost",
            "port": 9200,
            "http_error_codes": [
                400,
                403,
                404
            ],
            "ssl": false,
            "logger": "fos_elastica.logger",
            "compression": false,
            "retryOnConflict": 0,
            "persistent": true,
            "enabled": true
        }
    },
    "response": {
        "took": 0,
        "timed_out": false,
        "_shards": {
            "total": 1,
            "successful": 1,
            "skipped": 0,
            "failed": 0
        },
        "hits": {
            "total": {
                "value": 0,
                "relation": "eq"
            },
            "max_score": null,
            "hits": []
        }
    },
    "responseStatus": 200
}
INFO 10:37:59 elastica bitbag_attribute_taxons_prod/_search (POST) 0.91 ms
[
    {
        "query": {
            "bool": {
                "must": [
                    {
                        "terms": {
                            "attribute_taxons": [
                                "speciali_e_annuari_ama"
                            ]
                        }
                    }
                ]
            }
        },
        "size": 20
    }
]
DEBUG 10:37:59 doctrine SELECT s0_.code AS code_0, s0_.tree_left AS tree_left_1, s0_.tree_right AS tree_right_2, s0_.tree_level AS tree_level_3, s0_.position AS position_4, s0_.enabled AS enabled_5, s0_.id AS id_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s1_.name AS name_9, s1_.slug AS slug_10, s1_.description AS description_11, s1_.id AS id_12, s1_.locale AS locale_13, s0_.tree_root AS tree_root_14, s0_.parent_id AS parent_id_15, s1_.translatable_id AS translatable_id_16 FROM sylius_taxon s0_ INNER JOIN sylius_taxon_translation s1_ ON s0_.id = s1_.translatable_id WHERE s0_.enabled = ? AND s1_.slug = ? AND s1_.locale = ? ORDER BY s0_.id ASC
[
    true,
    "testate/armi-magazine/spec [...]",
    "it_IT"
]
DEBUG 10:37:59 elastica Elastica Request
{
    "request": {
        "path": "bitbag_attribute_taxons_prod/_search",
        "method": "POST",
        "data": {
            "query": {
                "bool": {
                    "must": [
                        {
                            "terms": {
                                "attribute_taxons": [
                                    "speciali_e_annuari_ama"
                                ]
                            }
                        }
                    ]
                }
            },
            "size": 20
        },
        "query": [],
        "contentType": "application/json",
        "connection": {
            "config": {
                "headers": [],
                "curl": []
            },
            "host": "localhost",
            "port": 9200,
            "http_error_codes": [
                400,
                403,
                404
            ],
            "ssl": false,
            "logger": "fos_elastica.logger",
            "compression": false,
            "retryOnConflict": 0,
            "persistent": true,
            "enabled": true
        }
    },
    "response": {
        "took": 0,
        "timed_out": false,
        "_shards": {
            "total": 1,
            "successful": 1,
            "skipped": 0,
            "failed": 0
        },
        "hits": {
            "total": {
                "value": 0,
                "relation": "eq"
            },
            "max_score": null,
            "hits": []
        }
    },
    "responseStatus": 200
}
INFO 10:37:59 elastica bitbag_attribute_taxons_prod/_search (POST) 1.27 ms
[
    {
        "query": {
            "bool": {
                "must": [
                    {
                        "terms": {
                            "attribute_taxons": [
                                "speciali_e_annuari_ama"
                            ]
                        }
                    }
                ]
            }
        },
        "size": 20
    }
]
DEBUG 10:37:59 doctrine SELECT s0_.code AS code_0, s0_.tree_left AS tree_left_1, s0_.tree_right AS tree_right_2, s0_.tree_level AS tree_level_3, s0_.position AS position_4, s0_.enabled AS enabled_5, s0_.id AS id_6, s0_.created_at AS created_at_7, s0_.updated_at AS updated_at_8, s1_.name AS name_9, s1_.slug AS slug_10, s1_.description AS description_11, s1_.id AS id_12, s1_.locale AS locale_13, s0_.tree_root AS tree_root_14, s0_.parent_id AS parent_id_15, s1_.translatable_id AS translatable_id_16 FROM sylius_taxon s0_ INNER JOIN sylius_taxon_translation s1_ ON s0_.id = s1_.translatable_id WHERE s0_.enabled = ? AND s1_.slug = ? AND s1_.locale = ? ORDER BY s0_.id ASC
[
    true,
    "testate/armi-magazine/spec [...]",
    "it_IT"
]
DEBUG 10:37:59 elastica Elastica Request
{
    "request": {
        "path": "bitbag_shop_products_prod/_search",
        "method": "POST",
        "data": {
            "query": {
                "bool": {
                    "must": [
                        {
                            "term": {
                                "enabled": {
                                    "value": true,
                                    "boost": 1
                                }
                            }
                        },
                        {
                            "terms": {
                                "channels": [
                                    "editoriale_cec"
                                ]
                            }
                        },
                        {
                            "term": {
                                "hideFrontend": {
                                    "value": false,
                                    "boost": 1
                                }
                            }
                        },
                        {
                            "terms": {
                                "product_taxons": [
                                    "speciali_e_annuari_ama"
                                ]
                            }
                        }
                    ]
                }
            },
            "sort": [
                {
                    "taxon_position_speciali_e_annuari_ama": {
                        "order": "asc",
                        "unmapped_type": "keyword"
                    }
                }
            ],
            "size": 0,
            "track_total_hits": true
        },
        "query": {
            "search_type": "query_then_fetch"
        },
        "contentType": "application/json",
        "connection": {
            "config": {
                "headers": [],
                "curl": []
            },
            "host": "localhost",
            "port": 9200,
            "http_error_codes": [
                400,
                403,
                404
            ],
            "ssl": false,
            "logger": "fos_elastica.logger",
            "compression": false,
            "retryOnConflict": 0,
            "persistent": true,
            "enabled": true
        }
    },
    "response": {
        "took": 0,
        "timed_out": false,
        "_shards": {
            "total": 1,
            "successful": 1,
            "skipped": 0,
            "failed": 0
        },
        "hits": {
            "total": {
                "value": 9,
                "relation": "eq"
            },
            "max_score": null,
            "hits": []
        }
    },
    "responseStatus": 200
}
INFO 10:37:59 elastica bitbag_shop_products_prod/_search (POST) 0.95 ms
[
    {
        "query": {
            "bool": {
                "must": [
                    {
                        "term": {
                            "enabled": {
                                "value": true,
                                "boost": 1
                            }
                        }
                    },
                    {
                        "terms": {
                            "channels": [
                                "editoriale_cec"
                            ]
                        }
                    },
                    {
                        "term": {
                            "hideFrontend": {
                                "value": false,
                                "boost": 1
                            }
                        }
                    },
                    {
                        "terms": {
                            "product_taxons": [
                                "speciali_e_annuari_ama"
                            ]
                        }
                    }
                ]
            }
        },
        "sort": [
            {
                "taxon_position_speciali_e_annuari_ama": {
                    "order": "asc",
                    "unmapped_type": "keyword"
                }
            }
        ],
        "size": 0,
        "track_total_hits": true
    }
]
ERROR 10:37:59 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "Page Not Found" at /var/www/html/vendor/babdev/pagerfanta-bundle/src/EventListener/ConvertNotValidCurrentPageToNotFoundListener.php line 16
{
    "exception": {}
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "App\EventListener\KernelRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\KernelRequestListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Setono\SyliusFacebookPlugin\EventListener\InitiateCheckoutSubscriber::track".
{
    "event": "kernel.request",
    "listener": "Setono\\SyliusFacebookPlugin\\EventListener\\InitiateCheckoutSubscriber::track"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Setono\SyliusFacebookPlugin\EventListener\PurchaseSubscriber::track".
{
    "event": "kernel.request",
    "listener": "Setono\\SyliusFacebookPlugin\\EventListener\\PurchaseSubscriber::track"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 10:37:59 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
DEBUG 10:37:59 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 Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Page Not Found

  at vendor/babdev/pagerfanta-bundle/src/EventListener/ConvertNotValidCurrentPageToNotFoundListener.php:16
  at BabDev\PagerfantaBundle\EventListener\ConvertNotValidCurrentPageToNotFoundListener->onKernelException()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:223)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (vendor/symfony/http-kernel/HttpKernel.php:86)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)                
[1/2] OutOfRangeCurrentPageException
Pagerfanta\Exception\OutOfRangeCurrentPageException:
Page "2" does not exist. The currentPage must be inferior to "1"

  at vendor/pagerfanta/pagerfanta/lib/Core/Pagerfanta.php:224
  at Pagerfanta\Pagerfanta->normalizeOutOfRangeCurrentPage()
     (vendor/pagerfanta/pagerfanta/lib/Core/Pagerfanta.php:197)
  at Pagerfanta\Pagerfanta->filterOutOfRangeCurrentPage()
     (vendor/pagerfanta/pagerfanta/lib/Core/Pagerfanta.php:178)
  at Pagerfanta\Pagerfanta->filterCurrentPage()
     (vendor/pagerfanta/pagerfanta/lib/Core/Pagerfanta.php:165)
  at Pagerfanta\Pagerfanta->setCurrentPage()
     (vendor/bitbag/elasticsearch-plugin/src/Finder/ShopProductsFinder.php:45)
  at BitBag\SyliusElasticsearchPlugin\Finder\ShopProductsFinder->find()
     (vendor/bitbag/elasticsearch-plugin/src/Controller/Action/Shop/ListProductsAction.php:82)
  at BitBag\SyliusElasticsearchPlugin\Controller\Action\Shop\ListProductsAction->__invoke()
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)