Exceptions
Exception
Shopware\Core\Framework\Uuid\Exception\ InvalidUuidException
in
vendor/shopware/core/Framework/Uuid/Uuid.php
(line 90)
{
if ($bin = @hex2bin($uuid)) {
return $bin;
}
throw new InvalidUuidException($uuid);
}
/**
* Generates a md5 binary, to hash the string and returns a UUID in hex
*/
in
vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityDefinitionQueryHelper.php
::
fromHexToBytes
(line 530)
$shiftedId = array_shift($id);
return Uuid::fromHexToBytes($shiftedId);
}
return Uuid::fromHexToBytes($id);
}, $primaryKeys);
}
if (!$primaryKeyField instanceof StorageAware) {
throw new \RuntimeException('Primary key fields has to be an instance of StorageAware');
EntityDefinitionQueryHelper->Shopware\Core\Framework\DataAbstractionLayer\Dbal\{closure}()
in
vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityDefinitionQueryHelper.php
array_map
(line 522)
$primaryKeyField = $definition->getPrimaryKeys()->first();
/** @feature-deprecated (flag:FEATURE_NEXT_14872) remove FeatureCheck
* if ($primaryKeyField instanceof IdField || $primaryKeyField instanceof FkField) {
*/
if ($primaryKeyField instanceof IdField || (Feature::isActive('FEATURE_NEXT_14872') && $primaryKeyField instanceof FkField)) {
$primaryKeys = array_map(function ($id) {
if (\is_array($id)) {
/** @var string $shiftedId */
$shiftedId = array_shift($id);
return Uuid::fromHexToBytes($shiftedId);
in
vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntitySearcher.php
->
addIdCondition
(line 85)
}
$query = $this->criteriaQueryBuilder->build($query, $definition, $criteria, $context);
if (!empty($criteria->getIds())) {
$this->queryHelper->addIdCondition($criteria, $definition, $query);
}
$this->addGroupBy($definition, $criteria, $context, $query, $table);
//add pagination
in
vendor/shopware/elasticsearch/Framework/DataAbstractionLayer/ElasticsearchEntitySearcher.php
->
search
(line 60)
}
public function search(EntityDefinition $definition, Criteria $criteria, Context $context): IdSearchResult
{
if (!$this->helper->allowSearch($definition, $context, $criteria)) {
return $this->decorated->search($definition, $criteria, $context);
}
if ($criteria->getLimit() === 0) {
return new IdSearchResult(0, [], $criteria, $context);
}
in
vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php
->
search
(line 214)
return $entities;
}
private function doSearch(Criteria $criteria, SalesChannelContext $salesChannelContext): IdSearchResult
{
$result = $this->searcher->search($this->definition, $criteria, $salesChannelContext->getContext());
$event = new SalesChannelEntityIdSearchResultLoadedEvent($this->definition, $result, $salesChannelContext);
$this->eventDispatcher->dispatch($event, $event->getName());
return $result;
in
vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php
->
doSearch
(line 120)
$entities = $this->read($criteria, $salesChannelContext);
return new EntitySearchResult($this->definition->getEntityName(), $entities->count(), $entities, $aggregations, $criteria, $salesChannelContext->getContext());
}
$ids = $this->doSearch($criteria, $salesChannelContext);
if (empty($ids->getIds())) {
/** @var EntityCollection<Entity> $collection */
$collection = $this->definition->getCollectionClass();
SalesChannelRepository->search()
in
custom/plugins/SwagPayPal/src/Util/Compatibility/SalesChannelRepositoryDecorator.php
(line 36)
$this->inner = $inner;
}
public function search(Criteria $criteria, SalesChannelContext $context): EntitySearchResult
{
return $this->inner->search($criteria, $context);
}
public function aggregate(Criteria $criteria, SalesChannelContext $context): AggregationResultCollection
{
return $this->inner->aggregate($criteria, $context);
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php
->
search
(line 149)
* @throws InconsistentCriteriaIdsException
*/
private function checkVariantListingConfig(string $productId, SalesChannelContext $context): ?string
{
/** @var SalesChannelProductEntity|null $product */
$product = $this->productRepository->search(new Criteria([$productId]), $context)->first();
if ($product === null || $product->getParentId() !== null) {
return null;
}
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php
->
checkVariantListingConfig
(line 80)
* @Route("/store-api/product/{productId}", name="store-api.product.detail", methods={"POST"})
*/
public function load(string $productId, Request $request, SalesChannelContext $context, Criteria $criteria): ProductDetailRouteResponse
{
return Profiler::trace('product-detail-route', function () use ($productId, $request, $context, $criteria) {
$mainVariantId = $this->checkVariantListingConfig($productId, $context);
$productId = $mainVariantId ?? $this->findBestVariant($productId, $context);
$this->addFilters($context, $criteria);
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Core\Content\Product\SalesChannel\Detail\{closure}
(line 57)
try {
foreach (self::$profilers as $profiler) {
$profiler->start($name, $category, $tags);
}
$result = $closure();
} finally {
foreach (self::$profilers as $profiler) {
$profiler->stop($name);
}
}
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php
::
trace
(line 123)
$product->setCmsPage($page);
}
}
return new ProductDetailRouteResponse($product, $configurator);
});
}
private function addFilters(SalesChannelContext $context, Criteria $criteria): void
{
$criteria->addFilter(
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/CachedProductDetailRoute.php
->
load
(line 85)
$value = $this->cache->get($key, function (ItemInterface $item) use ($productId, $request, $context, $criteria) {
$name = self::buildName($productId);
$response = $this->tracer->trace($name, function () use ($productId, $request, $context, $criteria) {
return $this->getDecorated()->load($productId, $request, $context, $criteria);
});
$item->tag($this->generateTags($productId, $request, $response, $context, $criteria));
return CacheValueCompressor::compress($response);
in
vendor/shopware/core/System/SystemConfig/SystemConfigService.php
->
Shopware\Core\Content\Product\SalesChannel\Detail\{closure}
(line 331)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 42)
*/
public function trace(string $key, \Closure $param)
{
return $this->collection->trace($key, function () use ($key, $param) {
return $this->translator->trace($key, function () use ($key, $param) {
return $this->config->trace($key, $param);
});
});
}
public function get(string $key): array
in
vendor/shopware/core/Framework/Adapter/Translation/Translator.php
->
Shopware\Core\Framework\Adapter\Cache\{closure}
(line 102)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 43)
public function trace(string $key, \Closure $param)
{
return $this->collection->trace($key, function () use ($key, $param) {
return $this->translator->trace($key, function () use ($key, $param) {
return $this->config->trace($key, $param);
});
});
}
public function get(string $key): array
{
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php
->
Shopware\Core\Framework\Adapter\Cache\{closure}
(line 43)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php
->
trace
(line 44)
{
return $this->collection->trace($key, function () use ($key, $param) {
return $this->translator->trace($key, function () use ($key, $param) {
return $this->config->trace($key, $param);
});
});
}
public function get(string $key): array
{
return array_merge(
in
vendor/shopware/storefront/Framework/Cache/CacheTracer.php
->
trace
(line 39)
}
public function trace(string $key, \Closure $param)
{
return $this->themeConfigAccessor->trace($key, function () use ($key, $param) {
return $this->getDecorated()->trace($key, $param);
});
}
public function get(string $key): array
{
in
vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php
->
Shopware\Storefront\Framework\Cache\{closure}
(line 57)
public function trace(string $key, \Closure $param)
{
$this->traces[$key] = [];
$this->keys[$key] = true;
$result = $param();
unset($this->keys[$key]);
return $result;
}
in
vendor/shopware/storefront/Framework/Cache/CacheTracer.php
->
trace
(line 40)
public function trace(string $key, \Closure $param)
{
return $this->themeConfigAccessor->trace($key, function () use ($key, $param) {
return $this->getDecorated()->trace($key, $param);
});
}
public function get(string $key): array
{
return array_unique(array_merge(
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/CachedProductDetailRoute.php
->
trace
(line 86)
$value = $this->cache->get($key, function (ItemInterface $item) use ($productId, $request, $context, $criteria) {
$name = self::buildName($productId);
$response = $this->tracer->trace($name, function () use ($productId, $request, $context, $criteria) {
return $this->getDecorated()->load($productId, $request, $context, $criteria);
});
$item->tag($this->generateTags($productId, $request, $response, $context, $criteria));
return CacheValueCompressor::compress($response);
});
in
vendor/symfony/cache-contracts/CacheTrait.php
->
Shopware\Core\Content\Product\SalesChannel\Detail\{closure}
(line 72)
}
}
if ($recompute) {
$save = true;
$item->set($callback($item, $save));
if ($save) {
$pool->save($item);
}
}
in
vendor/symfony/cache-contracts/CacheTrait.php
->
doGet
(line 35)
*
* @return mixed
*/
public function get(string $key, callable $callback, float $beta = null, array &$metadata = null)
{
return $this->doGet($this, $key, $callback, $beta, $metadata);
}
/**
* {@inheritdoc}
*/
in
vendor/shopware/core/Content/Product/SalesChannel/Detail/CachedProductDetailRoute.php
->
get
(line 91)
});
$item->tag($this->generateTags($productId, $request, $response, $context, $criteria));
return CacheValueCompressor::compress($response);
});
return CacheValueCompressor::uncompress($value);
}
public static function buildName(string $parentId): string
in
vendor/shopware/storefront/Page/Product/ProductPageLoader.php
->
load
(line 74)
->addAssociation('mainCategories.category')
->addAssociation('media');
$this->eventDispatcher->dispatch(new ProductPageCriteriaEvent($productId, $criteria, $context));
$result = $this->productDetailRoute->load($productId, $request, $context, $criteria);
$product = $result->getProduct();
if ($product->getMedia()) {
$product->getMedia()->sort(function (ProductMediaEntity $a, ProductMediaEntity $b) {
return $a->getPosition() <=> $b->getPosition();
in
vendor/shopware/storefront/Controller/ProductController.php
->
load
(line 88)
* @HttpCache()
* @Route("/detail/{productId}", name="frontend.detail.page", methods={"GET"})
*/
public function index(SalesChannelContext $context, Request $request): Response
{
$page = $this->productPageLoader->load($request, $context);
$this->hook(new ProductPageLoadedHook($page, $context));
$ratingSuccess = $request->get('success');
in
vendor/symfony/http-kernel/HttpKernel.php
->
index
(line 153)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/shopware/core/HttpKernel.php
->
handle
(line 149)
&& $container->getParameter('shopware.http.cache.enabled');
if ($enabled && $container->has(CacheStore::class)) {
$kernel = new static::$httpCacheClass($kernel, $container->get(CacheStore::class), null, ['debug' => $this->debug]);
}
$response = $kernel->handle($transformed, $type, $catch);
// fire event to trigger runtime events like seo url headers
$event = new BeforeSendResponseEvent($transformed, $response);
$container->get('event_dispatcher')->dispatch($event);
in
vendor/shopware/core/HttpKernel.php
->
doHandle
(line 75)
if (!\is_bool($catch)) {
Feature::triggerDeprecationOrThrow('v6.5.0.0', 'The third parameter `$catch` of `HttpKernel->handle()` will be typed to `bool`');
}
try {
return $this->doHandle($request, (int) $type, (bool) $catch);
} catch (DBALException $e) {
$connectionParams = self::getConnection()->getParams();
$message = str_replace([$connectionParams['url'] ?? null, $connectionParams['password'] ?? null, $connectionParams['user'] ?? null], '******', $e->getMessage());
}
} else {
$kernel = new InstallerKernel($appEnv, $debug);
}
$result = $kernel->handle($request);
if ($result instanceof Response) {
$result->send();
$kernel->terminate($request, $result);
} else {
Logs
Level | Channel | Message |
---|---|---|
INFO 22:00:40 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "ad3973" }, "request_uri": "https://juwelier-mersin.de/_profiler/ad3973?panel=exception", "method": "GET" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriber::__invoke". { "event": "kernel.response", "listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriber::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke". { "event": "kernel.response", "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::__invoke". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::setResponseCache" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriber::__invoke". { "event": "kernel.response", "listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriber::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke". { "event": "kernel.response", "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::__invoke". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 22:00:40 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::setResponseCache" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::addHttpCacheToCoreRoutes". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::addHttpCacheToCoreRoutes" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 22:00:40 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 22:00:40 | 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 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 22:00:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:00:40 | 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 22:00:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
Stack Trace
InvalidUuidException
|
---|
Shopware\Core\Framework\Uuid\Exception\InvalidUuidException: Value is not a valid UUID: 828776d54e2a46718dc646d17d565851& at vendor/shopware/core/Framework/Uuid/Uuid.php:90 at Shopware\Core\Framework\Uuid\Uuid::fromHexToBytes() (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityDefinitionQueryHelper.php:530) at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityDefinitionQueryHelper->Shopware\Core\Framework\DataAbstractionLayer\Dbal\{closure}() at array_map() (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntityDefinitionQueryHelper.php:522) at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntityDefinitionQueryHelper->addIdCondition() (vendor/shopware/core/Framework/DataAbstractionLayer/Dbal/EntitySearcher.php:85) at Shopware\Core\Framework\DataAbstractionLayer\Dbal\EntitySearcher->search() (vendor/shopware/elasticsearch/Framework/DataAbstractionLayer/ElasticsearchEntitySearcher.php:60) at Shopware\Elasticsearch\Framework\DataAbstractionLayer\ElasticsearchEntitySearcher->search() (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:214) at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->doSearch() (vendor/shopware/core/System/SalesChannel/Entity/SalesChannelRepository.php:120) at Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository->search() (custom/plugins/SwagPayPal/src/Util/Compatibility/SalesChannelRepositoryDecorator.php:36) at Swag\PayPal\Util\Compatibility\SalesChannelRepositoryDecorator->search() (vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:149) at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->checkVariantListingConfig() (vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:80) at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->Shopware\Core\Content\Product\SalesChannel\Detail\{closure}() (vendor/shopware/core/Profiling/Profiler.php:57) at Shopware\Core\Profiling\Profiler::trace() (vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:123) at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->load() (vendor/shopware/core/Content/Product/SalesChannel/Detail/CachedProductDetailRoute.php:85) at Shopware\Core\Content\Product\SalesChannel\Detail\CachedProductDetailRoute->Shopware\Core\Content\Product\SalesChannel\Detail\{closure}() (vendor/shopware/core/System/SystemConfig/SystemConfigService.php:331) at Shopware\Core\System\SystemConfig\SystemConfigService->trace() (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:42) at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}() (vendor/shopware/core/Framework/Adapter/Translation/Translator.php:102) at Shopware\Core\Framework\Adapter\Translation\Translator->trace() (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:43) at Shopware\Core\Framework\Adapter\Cache\CacheTracer->Shopware\Core\Framework\Adapter\Cache\{closure}() (vendor/shopware/core/Framework/Adapter/Cache/CacheTagCollection.php:43) at Shopware\Core\Framework\Adapter\Cache\CacheTagCollection->trace() (vendor/shopware/core/Framework/Adapter/Cache/CacheTracer.php:44) at Shopware\Core\Framework\Adapter\Cache\CacheTracer->trace() (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:39) at Shopware\Storefront\Framework\Cache\CacheTracer->Shopware\Storefront\Framework\Cache\{closure}() (vendor/shopware/storefront/Theme/ThemeConfigValueAccessor.php:57) at Shopware\Storefront\Theme\ThemeConfigValueAccessor->trace() (vendor/shopware/storefront/Framework/Cache/CacheTracer.php:40) at Shopware\Storefront\Framework\Cache\CacheTracer->trace() (vendor/shopware/core/Content/Product/SalesChannel/Detail/CachedProductDetailRoute.php:86) at Shopware\Core\Content\Product\SalesChannel\Detail\CachedProductDetailRoute->Shopware\Core\Content\Product\SalesChannel\Detail\{closure}() (vendor/symfony/cache-contracts/CacheTrait.php:72) at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->doGet() (vendor/symfony/cache-contracts/CacheTrait.php:35) at Shopware\Core\Framework\Adapter\Cache\CacheDecorator->get() (vendor/shopware/core/Content/Product/SalesChannel/Detail/CachedProductDetailRoute.php:91) at Shopware\Core\Content\Product\SalesChannel\Detail\CachedProductDetailRoute->load() (vendor/shopware/storefront/Page/Product/ProductPageLoader.php:74) at Shopware\Storefront\Page\Product\ProductPageLoader->load() (vendor/shopware/storefront/Controller/ProductController.php:88) at Shopware\Storefront\Controller\ProductController->index() (vendor/symfony/http-kernel/HttpKernel.php:153) 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() (vendor/shopware/core/HttpKernel.php:149) at Shopware\Core\HttpKernel->doHandle() (vendor/shopware/core/HttpKernel.php:75) at Shopware\Core\HttpKernel->handle() (public/index.php:85) |