Error 500 Internal Server Error

GET https://hungeling.belvg.dev/navigation/0195aa74f7a5704d916ffdeacb1743aa

Exceptions

Invalid ids provided in criteria. Ids should not be empty. Ids: Array
(
)
.

Exception

Shopware\Core\Framework\DataAbstractionLayer\ InvalidCriteriaIdsException

Show exception properties
Shopware\Core\Framework\DataAbstractionLayer\InvalidCriteriaIdsException {#22903
  -statusCode: 500
  -headers: []
  #parameters: array:2 [
    "ids" => """
      Array\n
      (\n
      )\n
      """
    "reason" => "Ids should not be empty"
  ]
  #statusCode: 500
  #errorCode: "FRAMEWORK__INVALID_CRITERIA_IDS"
}
  1.     /**
  2.      * @param array<mixed> $ids
  3.      */
  4.     public static function invalidCriteriaIds(array $idsstring $reason): self
  5.     {
  6.         return new InvalidCriteriaIdsException(
  7.             Response::HTTP_INTERNAL_SERVER_ERROR,
  8.             self::INVALID_CRITERIA_IDS,
  9.             'Invalid ids provided in criteria. {{ reason }}. Ids: {{ ids }}.',
  10.             ['ids' => print_r($idstrue), 'reason' => $reason]
  11.         );
  1.      * @param array<mixed> $ids
  2.      */
  3.     private function validateIds(array $ids): void
  4.     {
  5.         if (\count($ids) === 0) {
  6.             throw DataAbstractionLayerException::invalidCriteriaIds($ids'Ids should not be empty');
  7.         }
  8.         foreach ($ids as $id) {
  9.             if (!\is_string($id) && !\is_array($id)) {
  10.                 throw DataAbstractionLayerException::invalidCriteriaIds($ids'Ids should be a list of strings or a list of key value pairs, for entities with combined primary keys');
  1.             return;
  2.         }
  3.         $ids array_filter($ids);
  4.         $this->validateIds($ids);
  5.         $this->ids $ids;
  6.     }
  7.     public function __toString(): string
  1.         $products $event->getResult()->getEntities();
  2.         $context $event->getSalesChannelContext()->getContext();
  3.         foreach ($products as $eventProduct) {
  4.             $manufacturer $eventProduct->getManufacturer();
  5.             $manufacturerCriteria = new Criteria([$manufacturer->getMediaId()]);
  6.             $media $this->mediaRepository->search($manufacturerCriteria$event->getContext())->first();
  7.             $eventProduct->addExtension('manufacturerMedia'$media);
  8.             $criteria = new Criteria([$eventProduct->getId()]);
  9.             $criteria->addAssociation('translations');
  10.             $product $this->productRepository->search($criteria$context)->first();
in vendor/symfony/event-dispatcher/Debug/WrappedListener.php -> addSimilarProductsToListing (line 115)
  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.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         // @deprecated tag:v6.7.0 - remove DISABLE_EXTENSIONS from if condition
  7.         if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS'false) || !HookableEventFactory::isHookable($event)) {
  8.             return $event;
  9.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  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.         $response->getResult()->addCurrentFilter('navigationId'$categoryId);
  2.         $this->processor->process($request$response->getResult(), $context);
  3.         $this->eventDispatcher->dispatch(
  4.             new ProductListingResultEvent($request$response->getResult(), $context)
  5.         );
  6.         $response->getResult()->getAvailableSortings()->removeByKey(
  7.             ResolvedCriteriaProductSearchRoute::DEFAULT_SEARCH_SORT
  1.             return $entityListing->listingRoute($criteria$categoryId);
  2.         }
  3.         try {
  4.             return $this->decorated->load($categoryId$request$context$criteria);
  5.         } catch (ProductSortingNotFoundException $exception) {
  6.             throw new \Exception('Product listing is not combinable with another listing. Please leave the product listing alone.');
  7.         }
  8.     }
  9. }
  1.         $criteria = new Criteria();
  2.         $criteria->setTitle('cms::product-listing');
  3.         $listing $this->listingRoute
  4.             ->load($navigationId$request$context$criteria)
  5.             ->getResult();
  6.         $data->setListing($listing);
  7.     }
  1.             $result = new ElementDataCollection();
  2.             $this->mapSearchResults($result$slot$criteriaList$criteriaResult);
  3.             $this->mapEntities($result$slot$criteriaList$identifierResult);
  4.             $resolver->enrich($slot$resolverContext$result);
  5.             // replace with return value from enrich(), because it's allowed to change the entity type
  6.             $slots->set($slotId$slot);
  7.         }
  1.     public function publish(string $nameExtension $extension, callable $function): mixed
  2.     {
  3.         $this->dispatcher->dispatch($extensionself::pre($name));
  4.         if (!$extension->isPropagationStopped()) {
  5.             $extension->result $function(...$extension->getParams());
  6.         }
  7.         $extension->resetPropagation();
  8.         $this->dispatcher->dispatch($extensionself::post($name));
  1.         // fetch data from storage
  2.         $identifierResult $this->fetchByIdentifier($directReads$resolverContext->getSalesChannelContext());
  3.         $criteriaResult $this->fetchByCriteria($searches$resolverContext->getSalesChannelContext());
  4.         return $this->extensions->publish(
  5.             nameCmsSlotsDataEnrichExtension::NAME,
  6.             extension: new CmsSlotsDataEnrichExtension(
  7.                 slots$slots,
  8.                 criteriaList$criteriaList,
  9.                 identifierResult$identifierResult,
  1.     public function publish(string $nameExtension $extension, callable $function): mixed
  2.     {
  3.         $this->dispatcher->dispatch($extensionself::pre($name));
  4.         if (!$extension->isPropagationStopped()) {
  5.             $extension->result $function(...$extension->getParams());
  6.         }
  7.         $extension->resetPropagation();
  8.         $this->dispatcher->dispatch($extensionself::post($name));
  1.         );
  2.     }
  3.     public function resolve(CmsSlotCollection $slotsResolverContext $resolverContext): CmsSlotCollection
  4.     {
  5.         return $this->extensions->publish(
  6.             nameCmsSlotsDataResolveExtension::NAME,
  7.             extension: new CmsSlotsDataResolveExtension($slots$resolverContext),
  8.             function: $this->__resolve(...),
  9.         );
  10.     }
  1.     }
  2.     private function loadSlotData(CmsSectionCollection $sectionsResolverContext $resolverContext): void
  3.     {
  4.         $blocks $sections->getBlocks();
  5.         $slots $this->slotDataResolver->resolve($blocks->getSlots(), $resolverContext);
  6.         $blocks->setSlots($slots);
  7.     }
  8.     /**
  1.             // step 4, overwrite slot config
  2.             $this->overwriteSlotConfig($sections$overwrite);
  3.             // step 5, resolve slot data
  4.             $this->loadSlotData($sections$resolverContext);
  5.         }
  6.         $this->dispatcher->dispatch(new CmsPageLoadedEvent($request$pages$context));
  7.         $this->dispatcher->dispatch(new AddCacheTagEvent(...$this->extractProductIds($pages)));
  1.             return new CategoryRouteResponse($category);
  2.         }
  3.         $resolverContext = new EntityResolverContext($context$request$this->categoryDefinition$category);
  4.         $pages $this->cmsPageLoader->load(
  5.             $request,
  6.             $this->createCriteria($pageId$request),
  7.             $context,
  8.             $slotConfig,
  9.             $resolverContext
  1.             }
  2.             $value $this->cache->get($key, function (ItemInterface $item) use ($navigationId$request$context) {
  3.                 $name self::buildName($navigationId);
  4.                 $response $this->tracer->trace($name, fn () => $this->getDecorated()->load($navigationId$request$context));
  5.                 $item->tag($this->generateTags($navigationId$response$request$context));
  6.                 return CacheValueCompressor::compress($response);
  7.             });
in vendor/shopware/core/System/SystemConfig/SystemConfigService.php -> Shopware\Core\Content\Category\SalesChannel\{closure} (line 451)
  1.     public function trace(string $key\Closure $param)
  2.     {
  3.         $this->traces[$key] = [];
  4.         $this->keys[$key] = true;
  5.         $result $param();
  6.         unset($this->keys[$key]);
  7.         return $result;
  8.     }
  1.         $this->decoratedSystemConfigService->deleteExtensionConfiguration($extensionName$config);
  2.     }
  3.     public function trace(string $keyClosure $param)
  4.     {
  5.         return $this->decoratedSystemConfigService->trace($key$param);
  6.     }
  7.     public function getTrace(string $key): array
  8.     {
  9.         return $this->decoratedSystemConfigService->getTrace($key);
  1.         throw new DecorationPatternException(self::class);
  2.     }
  3.     public function trace(string $key\Closure $param)
  4.     {
  5.         return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key$param)));
  6.     }
  7.     public function get(string $key): array
  8.     {
  9.         return array_merge(
in vendor/shopware/core/Framework/Adapter/Translation/Translator.php -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 101)
  1.     public function trace(string $key\Closure $param)
  2.     {
  3.         $this->traces[$key] = [];
  4.         $this->keys[$key] = true;
  5.         $result $param();
  6.         unset($this->keys[$key]);
  7.         return $result;
  8.     }
  1.         throw new DecorationPatternException(self::class);
  2.     }
  3.     public function trace(string $key\Closure $param)
  4.     {
  5.         return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key$param)));
  6.     }
  7.     public function get(string $key): array
  8.     {
  9.         return array_merge(
in vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php -> Shopware\Core\Framework\Adapter\Cache\{closure} (line 56)
  1.     public function trace(string $key\Closure $param)
  2.     {
  3.         $this->traces[$key] = [];
  4.         $this->keys[$key] = true;
  5.         $result $param();
  6.         unset($this->keys[$key]);
  7.         return $result;
  8.     }
  1.         throw new DecorationPatternException(self::class);
  2.     }
  3.     public function trace(string $key\Closure $param)
  4.     {
  5.         return $this->collection->trace($key, fn () => $this->translator->trace($key, fn () => $this->config->trace($key$param)));
  6.     }
  7.     public function get(string $key): array
  8.     {
  9.         return array_merge(
  1.         return $this->decorated;
  2.     }
  3.     public function trace(string $key\Closure $param)
  4.     {
  5.         return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key$param));
  6.     }
  7.     public function get(string $key): array
  8.     {
  9.         return array_unique(array_merge(
in vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php -> Shopware\Storefront\Framework\Cache\{closure} (line 97)
  1.     public function trace(string $key\Closure $param)
  2.     {
  3.         $this->traces[$key] = [];
  4.         $this->keys[$key] = true;
  5.         $result $param();
  6.         unset($this->keys[$key]);
  7.         return $result;
  8.     }
  1.         return $this->decorated;
  2.     }
  3.     public function trace(string $key\Closure $param)
  4.     {
  5.         return $this->themeConfigAccessor->trace($key, fn () => $this->getDecorated()->trace($key$param));
  6.     }
  7.     public function get(string $key): array
  8.     {
  9.         return array_unique(array_merge(
  1.             }
  2.             $value $this->cache->get($key, function (ItemInterface $item) use ($navigationId$request$context) {
  3.                 $name self::buildName($navigationId);
  4.                 $response $this->tracer->trace($name, fn () => $this->getDecorated()->load($navigationId$request$context));
  5.                 $item->tag($this->generateTags($navigationId$response$request$context));
  6.                 return CacheValueCompressor::compress($response);
  7.             });
in vendor/symfony/cache-contracts/CacheTrait.php -> Shopware\Core\Content\Category\SalesChannel\{closure} (line 64)
  1.             }
  2.         }
  3.         if ($recompute) {
  4.             $save true;
  5.             $item->set($callback($item$save));
  6.             if ($save) {
  7.                 $pool->save($item);
  8.             }
  9.         }
  1.  */
  2. trait CacheTrait
  3. {
  4.     public function get(string $key, callable $callback, ?float $beta null, ?array &$metadata null): mixed
  5.     {
  6.         return $this->doGet($this$key$callback$beta$metadata);
  7.     }
  8.     public function delete(string $key): bool
  9.     {
  10.         return $this->deleteItem($key);
  1.             if ($key === null) {
  2.                 return $this->getDecorated()->load($navigationId$request$context);
  3.             }
  4.             $value $this->cache->get($key, function (ItemInterface $item) use ($navigationId$request$context) {
  5.                 $name self::buildName($navigationId);
  6.                 $response $this->tracer->trace($name, fn () => $this->getDecorated()->load($navigationId$request$context));
  7.                 $item->tag($this->generateTags($navigationId$response$request$context));
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Core\Content\Category\SalesChannel\{closure} (line 67)
  1.         try {
  2.             foreach (self::$profilers as $profiler) {
  3.                 $profiler->start($name$category$tags);
  4.             }
  5.             $result $closure();
  6.         } finally {
  7.             foreach (self::$profilers as $profiler) {
  8.                 $profiler->stop($name);
  9.             }
  10.         }
  1.     {
  2.         if (Feature::isActive('cache_rework')) {
  3.             return $this->getDecorated()->load($navigationId$request$context);
  4.         }
  5.         return Profiler::trace('category-route', function () use ($navigationId$request$context) {
  6.             if ($context->hasState(...$this->states)) {
  7.                 return $this->getDecorated()->load($navigationId$request$context);
  8.             }
  9.             $key $this->generateKey($navigationId$request$context);
  1.         )]
  2.     )]
  3.     #[Route(path'/store-api/category/{navigationId}'name'store-api.category.detail'methods: ['GET''POST'])]
  4.     public function load(string $navigationIdRequest $requestSalesChannelContext $context): CategoryRouteResponse
  5.     {
  6.         $response $this->inner->load($navigationId$request$context);
  7.         $route $request->attributes->get('_route');
  8.         if (!\is_string($route) || empty($route)) {
  9.             return $response;
  1.         $page NavigationPage::createFrom($page);
  2.         $navigationId $request->get('navigationId'$context->getSalesChannel()->getNavigationCategoryId());
  3.         $category $this->cmsPageRoute
  4.             ->load($navigationId$request$context)
  5.             ->getCategory();
  6.         if (!$category->getActive()) {
  7.             throw CategoryException::categoryNotFound($category->getId());
  8.         }
  1.     }
  2.     #[Route(path'/navigation/{navigationId}'name'frontend.navigation.page'options: ['seo' => true], defaults: ['_httpCache' => true], methods: ['GET'])]
  3.     public function index(SalesChannelContext $contextRequest $request): Response
  4.     {
  5.         $page $this->navigationPageLoader->load($request$context);
  6.         $this->hook(new NavigationPageLoadedHook($page$context));
  7.         return $this->renderStorefront('@Storefront/storefront/page/content/index.html.twig', ['page' => $page]);
  8.     }
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.             $this->dispatcher->dispatch($event);
  2.             return $event->getResponse();
  3.         }
  4.         return parent::handle($request$type$catch);
  5.     }
  6. }
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.     protected function forward(Request $requestbool $catch false, ?Response $entry null): Response
  2.     {
  3.         $this->surrogate?->addSurrogateCapability($request);
  4.         // always a "master" request (as the real master request can be in cache)
  5.         $response SubRequestHandler::handle($this->kernel$requestHttpKernelInterface::MAIN_REQUEST$catch);
  6.         /*
  7.          * Support stale-if-error given on Responses or as a config option.
  8.          * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9.          * Cache-Control directives) that
  1.         // avoid that the backend sends no content
  2.         $subRequest->headers->remove('If-Modified-Since');
  3.         $subRequest->headers->remove('If-None-Match');
  4.         $response $this->forward($subRequest$catch);
  5.         if ($response->isCacheable()) {
  6.             $this->store($request$response);
  7.         }
  1.         }
  2.         if (null === $entry) {
  3.             $this->record($request'miss');
  4.             return $this->fetch($request$catch);
  5.         }
  6.         if (!$this->isFreshEnough($request$entry)) {
  7.             $this->record($request'stale');
  1.                 reload the cache by fetching a fresh response and caching it (if possible).
  2.             */
  3.             $this->record($request'reload');
  4.             $response $this->fetch($request$catch);
  5.         } else {
  6.             $response $this->lookup($request$catch);
  7.         }
  8.         $this->restoreResponseBody($request$response);
  9.         if (HttpKernelInterface::MAIN_REQUEST === $type) {
  1.         // only handle main request inside http cache, because ESI tags are also interpreted as main request.
  2.         // sub requests are requests, which are forwarded to the kernel inside the php stack
  3.         // https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
  4.         if ($type === HttpKernelInterface::MAIN_REQUEST) {
  5.             $response parent::handle($request$type$catch);
  6.         } elseif ($request->attributes->has('_sw_esi')) {
  7.             $response parent::handle($request$type$catch);
  8.         } else {
  9.             $response $this->getKernel()->handle($request$type$catch);
  10.         }
in vendor/shopware/core/Kernel.php -> handle (line 156)
  1.     {
  2.         if (!$this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     public function boot(): void
  8.     {
  9.         if ($this->booted === true) {
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/html2/hungeling/public_html/vendor/autoload_runtime.php') in public/index.php (line 10)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ '/../.env') && !file_exists(__DIR__ '/../.env.dist') && !file_exists(__DIR__ '/../.env.local.php')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
INFO 14:27:49 php User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Since shopware/core : Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator".
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Method "Shopware\Core\System\SystemConfig\SystemConfigService::get()" might add "array|bool|float|int|string|null" as a native return type declaration in the future. Do the same in child class "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::all()" method is considered internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator".
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::getDomain()" method is considered internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator".
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Method "Shopware\Core\System\SystemConfig\SystemConfigService::trace()" might add "TReturn" as a native return type declaration in the future. Do the same in child class "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:27:49 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "06b25c"
    },
    "request_uri": "https://hungeling.belvg.dev/_profiler/06b25c?panel=exception&type=request",
    "method": "GET"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
INFO 14:27:49 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Hungeling\Theme\Twig\ProductById" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "MoorlFoundation\Core\Framework\Twig\ListingExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:27:49 php User Deprecated: The "Shopware\Core\System\SalesChannel\Context\SalesChannelContextPersister::__construct()" method is considered internal. It may change without further notice. You should not extend it from "BelVG\RecentlyViewedProduct\Core\System\SalesChannel\Context\SalesChannelContextPersisterDecorated".
{
    "exception": {}
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "ContainerXWdqBHh\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerXWdqBHh\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 14:27:49 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheControlListener::__invoke"
}
DEBUG 14:27:49 event Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\CanonicalLinkListener::__invoke"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "ContainerXWdqBHh\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerXWdqBHh\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Content\\Seo\\SalesChannel\\StoreApiSeoResolver::addSeoInformation"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\System\\SalesChannel\\Api\\StoreApiResponseListener::encodeResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCacheHeader"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ResponseHeaderListener::onResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\ControllerExceptionHandling\JsonApiStashedErrorHandler::onResponseEvent".
{
    "event": "kernel.response",
    "listener": "Pickware\\ApiErrorHandlingBundle\\ControllerExceptionHandling\\JsonApiStashedErrorHandler::onResponseEvent"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\JsonApiErrorTranslating\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent".
{
    "event": "kernel.response",
    "listener": "Pickware\\ApiErrorHandlingBundle\\JsonApiErrorTranslating\\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 14:27:49 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCache"
}
DEBUG 14:27:49 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 14:27:49 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 14:27:49 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest"
}
DEBUG 14:27:49 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "ContainerXWdqBHh\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerXWdqBHh\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 14:27:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

InvalidCriteriaIdsException
Shopware\Core\Framework\DataAbstractionLayer\InvalidCriteriaIdsException:
Invalid ids provided in criteria. Ids should not be empty. Ids: Array
(
)
.

  at vendor/shopware/core/Framework/DataAbstractionLayer/DataAbstractionLayerException.php:146
  at Shopware\Core\Framework\DataAbstractionLayer\DataAbstractionLayerException::invalidCriteriaIds()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Criteria.php:689)
  at Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria->validateIds()
     (vendor/shopware/core/Framework/DataAbstractionLayer/Search/Criteria.php:167)
  at Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria->__construct()
     (custom/plugins/BelVGSimilarProducts/src/Subscriber/Storefront/ProductPageLoaderSubscriber.php:96)
  at BelVG\SimilarProducts\Subscriber\Storefront\ProductPageLoaderSubscriber->addSimilarProductsToListing()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:40)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:29)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/shopware/core/Content/Product/SalesChannel/Listing/ResolveCriteriaProductListingRoute.php:54)
  at Shopware\Core\Content\Product\SalesChannel\Listing\ResolveCriteriaProductListingRoute->load()
     (vendor/store.shopware.com/moorlfoundation/src/Core/Content/Product/SalesChannel/Listing/FoundationProductListingRoute.php:40)
  at MoorlFoundation\Core\Content\Product\SalesChannel\Listing\FoundationProductListingRoute->load()
     (vendor/shopware/core/Content/Product/Cms/ProductListingCmsElementResolver.php:76)
  at Shopware\Core\Content\Product\Cms\ProductListingCmsElementResolver->enrich()
     (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:138)
  at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->enrichCmsSlots()
     (vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php:44)
  at Shopware\Core\Framework\Extensions\ExtensionDispatcher->publish()
     (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:67)
  at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->__resolve()
     (vendor/shopware/core/Framework/Extensions/ExtensionDispatcher.php:44)
  at Shopware\Core\Framework\Extensions\ExtensionDispatcher->publish()
     (vendor/shopware/core/Content/Cms/DataResolver/CmsSlotsDataResolver.php:82)
  at Shopware\Core\Content\Cms\DataResolver\CmsSlotsDataResolver->resolve()
     (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:112)
  at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->loadSlotData()
     (vendor/shopware/core/Content/Cms/SalesChannel/SalesChannelCmsPageLoader.php:99)
  at Shopware\Core\Content\Cms\SalesChannel\SalesChannelCmsPageLoader->load()
     (vendor/shopware/core/Content/Category/SalesChannel/CategoryRoute.php:85)
  at Shopware\Core\Content\Category\SalesChannel\CategoryRoute->load()
     (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:79)
  at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}()
     (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:451)
  at Shopware\Core\System\SystemConfig\SystemConfigService->trace()
     (vendor/pickware/shopware-extensions-bundle/src/Mail/SystemConfigServiceDecorator.php:140)
  at Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator->trace()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:101)
  at Shopware\Core\Framework\Adapter\Translation\Translator->trace()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:56)
  at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace()
     (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:35)
  at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace()
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}()
     (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:97)
  at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace()
     (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:35)
  at Shopware\Storefront\Framework\Cache\CacheTracer->trace()
     (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:79)
  at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}()
     (vendor/symfony/cache-contracts/CacheTrait.php:64)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet()
     (vendor/symfony/cache-contracts/CacheTrait.php:30)
  at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get()
     (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:76)
  at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->Shopware\Core\Content\Category\SalesChannel\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace()
     (vendor/shopware/core/Content/Category/SalesChannel/CachedCategoryRoute.php:65)
  at Shopware\Core\Content\Category\SalesChannel\CachedCategoryRoute->load()
     (vendor/store.shopware.com/swagpaypal/src/Checkout/ExpressCheckout/SalesChannel/ExpressCategoryRoute.php:70)
  at Swag\PayPal\Checkout\ExpressCheckout\SalesChannel\ExpressCategoryRoute->load()
     (vendor/shopware/storefront/Page/Navigation/NavigationPageLoader.php:41)
  at Shopware\Storefront\Page\Navigation\NavigationPageLoader->load()
     (vendor/shopware/storefront/Controller/NavigationController.php:49)
  at Shopware\Storefront\Controller\NavigationController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:460)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:437)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:335)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:213)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
     (vendor/shopware/core/Kernel.php:156)
  at Shopware\Core\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/html2/hungeling/public_html/vendor/autoload_runtime.php')
     (public/index.php:10)