Symfony Exception

ProductNotFoundException

HTTP 404 Not Found

Product for id 9e949c3591204670be319e08214d4353 not found.

Exception

Shopware\Core\Content\Product\Exception\ ProductNotFoundException

  1.         $product $this->repository
  2.             ->search($criteria$context)
  3.             ->first();
  4.         if (!$product instanceof SalesChannelProductEntity) {
  5.             throw new ProductNotFoundException($productId);
  6.         }
  7.         $product->setSeoCategory(
  8.             $this->breadcrumbBuilder->getProductSeoCategory($product$context)
  9.         );
  1.             // @deprecated tag:v6.4.0 - `ProductPageCriteriaEvent` or `MinimalQuickViewPageCriteriaEvent` will be dispatched in corresponding page loader classes
  2.             $instance = new $event($productId$criteria$salesChannelContext);
  3.             $this->eventDispatcher->dispatch($instance);
  4.         }
  5.         $result $this->productRoute->load($productId, new Request(), $salesChannelContext$criteria);
  6.         $result->getProduct()->setConfigurator(
  7.             $result->getConfigurator()
  8.         );
  1.         $productId $request->attributes->get('productId');
  2.         if (!$productId) {
  3.             throw new MissingRequestParameterException('productId''/productId');
  4.         }
  5.         $product $this->productLoader->load($productId$salesChannelContextProductPageCriteriaEvent::class);
  6.         $page->setProduct($product);
  7.         $page->setConfiguratorSettings($product->getConfigurator());
  8.         $request->request->set('parentId'$product->getParentId());
  9.         $reviews $this->productReviewLoader->load($request$salesChannelContext);
  1.      * @HttpCache()
  2.      * @Route("/detail/{productId}", name="frontend.detail.page", methods={"GET"})
  3.      */
  4.     public function index(SalesChannelContext $contextRequest $request): Response
  5.     {
  6.         $page $this->productPageLoader->load($request$context);
  7.         $ratingSuccess $request->get('success');
  8.         if (!Feature::isActive('FEATURE_NEXT_10078')) {
  9.             return $this->renderStorefront('@Storefront/storefront/page/product-detail/index.html.twig', ['page' => $page'ratingSuccess' => $ratingSuccess]);
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  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.         if ($this->surrogate) {
  2.             $this->surrogate->addSurrogateCapability($request);
  3.         }
  4.         // always a "master" request (as the real master request can be in cache)
  5.         $response SubRequestHandler::handle($this->kernel$requestHttpKernelInterface::MASTER_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::MASTER_REQUEST === $type) {
  1.             && $container->getParameter('shopware.http.cache.enabled');
  2.         if ($enabled) {
  3.             $kernel = new HttpCache($kernel$container->get(CacheStore::class), null, ['debug' => $this->debug]);
  4.         }
  5.         $response $kernel->handle($transformed$type$catch);
  6.         // fire event to trigger runtime events like seo url headers
  7.         $event = new BeforeSendResponseEvent($transformed$response);
  8.         $container->get('event_dispatcher')->dispatch($event);
in vendor/shopware/core/HttpKernel.php -> doHandle (line 80)
  1.     }
  2.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true): HttpKernelResult
  3.     {
  4.         try {
  5.             return $this->doHandle($request, (int) $type, (bool) $catch);
  6.         } catch (DBALException $e) {
  7.             $connectionParams self::getConnection()->getParams();
  8.             $message str_replace([$connectionParams['url'], $connectionParams['password'], $connectionParams['user']], '******'$e->getMessage());
HttpKernel->handle() in public/index.php (line 83)
  1. }
  2. $request Request::createFromGlobals();
  3. $kernel = new HttpKernel($appEnv$debug$classLoader);
  4. $result $kernel->handle($request);
  5. $result->getResponse()->send();
  6. $kernel->terminate($result->getRequest(), $result->getResponse());

Logs 1

Level Channel Message
DEBUG 09:44:32 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:32 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:32 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:32 event Notified event "plugin.loaded" to listener "Shopware\Core\Framework\Plugin\Subscriber\PluginLoadedSubscriber::unserialize".
{
    "event": "plugin.loaded",
    "listener": "Shopware\\Core\\Framework\\Plugin\\Subscriber\\PluginLoadedSubscriber::unserialize"
}
INFO 09:44:32 php User Deprecated: The "Symfony\Component\Debug\DebugClassLoader" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.
{
    "exception": {}
}
INFO 09:44:33 request Matched route "frontend.detail.page".
{
    "route": "frontend.detail.page",
    "route_parameters": {
        "_route": "frontend.detail.page",
        "_controller": "Shopware\\Storefront\\Controller\\ProductController::index",
        "productId": "9e949c3591204670be319e08214d4353"
    },
    "request_uri": "https://www.asg-store.de/detail/9e949c3591204670be319e08214d4353",
    "method": "GET"
}
DEBUG 09:44:33 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 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:44:33 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 09:44:33 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 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\ApiVersion\ApiVersionSubscriber::checkIfVersionIsSupported".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\ApiVersion\\ApiVersionSubscriber::checkIfVersionIsSupported"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "currency.loaded" to listener "Shopware\Core\System\Currency\CurrencyLoadSubscriber::setDefault".
{
    "event": "currency.loaded",
    "listener": "Shopware\\Core\\System\\Currency\\CurrencyLoadSubscriber::setDefault"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "payment_method.loaded" to listener "Shopware\Core\Checkout\Payment\DataAbstractionLayer\PaymentHandlerIdentifierSubscriber::formatHandlerIdentifier".
{
    "event": "payment_method.loaded",
    "listener": "Shopware\\Core\\Checkout\\Payment\\DataAbstractionLayer\\PaymentHandlerIdentifierSubscriber::formatHandlerIdentifier"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "rule.loaded" to listener "Shopware\Core\Content\Rule\DataAbstractionLayer\RulePayloadSubscriber::unserialize".
{
    "event": "rule.loaded",
    "listener": "Shopware\\Core\\Content\\Rule\\DataAbstractionLayer\\RulePayloadSubscriber::unserialize"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
INFO 09:44:33 app #1 Rule detection: Always valid (Default) with priority 100 (id: 8e098bbf86e643e2b85f2e592254a3d7)
INFO 09:44:33 app #2 Rule detection: Cart >= 0 with priority 100 (id: f59f2702485a4522b0f53c6983aaca5b)
INFO 09:44:33 app #3 Rule detection: Cart >= 0 (Payment) with priority 100 (id: 150fbda0c29e4f90a855387250198012)
INFO 09:44:33 app #4 Rule detection: Versand Deutschland with priority 20 (id: b1787a1b54fc425d9d8f01236708ddee)
INFO 09:44:33 app #5 Rule detection: Alle Kunden with priority 1 (id: f793d0dd34ea43c29ea29fffac696e2d)
INFO 09:44:33 app #6 Rule detection: Kein Versand bei Barzahlung with priority 1 (id: a31ab10685f54969936cc0182d43d226)
INFO 09:44:33 app #7 Rule detection: Abholung with priority 1 (id: 64fa1ec9d6174b048a1be4758b44e9ad)
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 09:44:33 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 09:44:33 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 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 09:44:33 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 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 09:44:33 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 09:44:33 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 09:44:33 event Notified event "currency.loaded" to listener "Shopware\Core\System\Currency\CurrencyLoadSubscriber::setDefault".
{
    "event": "currency.loaded",
    "listener": "Shopware\\Core\\System\\Currency\\CurrencyLoadSubscriber::setDefault"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "plugin.loaded" to listener "Shopware\Core\Framework\Plugin\Subscriber\PluginLoadedSubscriber::unserialize".
{
    "event": "plugin.loaded",
    "listener": "Shopware\\Core\\Framework\\Plugin\\Subscriber\\PluginLoadedSubscriber::unserialize"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "media.loaded" to listener "Shopware\Core\Content\Media\Subscriber\MediaLoadedSubscriber::unserialize".
{
    "event": "media.loaded",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaLoadedSubscriber::unserialize"
}
DEBUG 09:44:33 event Notified event "media.loaded" to listener "Shopware\Core\Content\Media\Subscriber\MediaLoadedSubscriber::addUrls".
{
    "event": "media.loaded",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaLoadedSubscriber::addUrls"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
DEBUG 09:44:33 event Notified event "Shopware\Storefront\Pagelet\Footer\FooterPageletLoadedEvent" to listener "Swag\PayPal\Installment\Banner\InstallmentBannerSubscriber::addInstallmentBannerPagelet".
{
    "event": "Shopware\\Storefront\\Pagelet\\Footer\\FooterPageletLoadedEvent",
    "listener": "Swag\\PayPal\\Installment\\Banner\\InstallmentBannerSubscriber::addInstallmentBannerPagelet"
}
DEBUG 09:44:33 event Notified event "Shopware\Storefront\Pagelet\Footer\FooterPageletLoadedEvent" to listener "Swag\PayPal\Checkout\SPBCheckout\SPBMarksSubscriber::addMarksExtension".
{
    "event": "Shopware\\Storefront\\Pagelet\\Footer\\FooterPageletLoadedEvent",
    "listener": "Swag\\PayPal\\Checkout\\SPBCheckout\\SPBMarksSubscriber::addMarksExtension"
}
DEBUG 09:44:33 event Notified event "Shopware\Storefront\Pagelet\Footer\FooterPageletLoadedEvent" to listener "Wesio\WhatsApp\Storefront\Subscriber\FooterLoadedEventSubscriber::addActiveProductCount".
{
    "event": "Shopware\\Storefront\\Pagelet\\Footer\\FooterPageletLoadedEvent",
    "listener": "Wesio\\WhatsApp\\Storefront\\Subscriber\\FooterLoadedEventSubscriber::addActiveProductCount"
}
DEBUG 09:44:33 event Notified event "Shopware\Storefront\Pagelet\Footer\FooterPageletLoadedEvent" to listener "KlarnaPayment\Components\EventListener\FooterBadgeEventListener::addFooterBadge".
{
    "event": "Shopware\\Storefront\\Pagelet\\Footer\\FooterPageletLoadedEvent",
    "listener": "KlarnaPayment\\Components\\EventListener\\FooterBadgeEventListener::addFooterBadge"
}
DEBUG 09:44:33 event Notified event "payment_method.loaded" to listener "Shopware\Core\Checkout\Payment\DataAbstractionLayer\PaymentHandlerIdentifierSubscriber::formatHandlerIdentifier".
{
    "event": "payment_method.loaded",
    "listener": "Shopware\\Core\\Checkout\\Payment\\DataAbstractionLayer\\PaymentHandlerIdentifierSubscriber::formatHandlerIdentifier"
}
DEBUG 09:44:33 event Notified event "payment_method.search.result.loaded" to listener "KlarnaPayment\Components\EventListener\PaymentMethodEventListener::onSearchResultLoaded".
{
    "event": "payment_method.search.result.loaded",
    "listener": "KlarnaPayment\\Components\\EventListener\\PaymentMethodEventListener::onSearchResultLoaded"
}
DEBUG 09:44:33 event Notified event "sales_channel.payment_method.search.result.loaded" to listener "Swag\PayPal\Checkout\PayUponInvoice\PayUponInvoiceSubscriber::onSearchResultLoaded".
{
    "event": "sales_channel.payment_method.search.result.loaded",
    "listener": "Swag\\PayPal\\Checkout\\PayUponInvoice\\PayUponInvoiceSubscriber::onSearchResultLoaded"
}
DEBUG 09:44:33 event Notified event "sales_channel.payment_method.search.result.loaded" to listener "KlarnaPayment\Components\EventListener\PaymentMethodEventListener::onSalesChannelSearchResultLoaded".
{
    "event": "sales_channel.payment_method.search.result.loaded",
    "listener": "KlarnaPayment\\Components\\EventListener\\PaymentMethodEventListener::onSalesChannelSearchResultLoaded"
}
DEBUG 09:44:33 event Notified event "product.loaded" to listener "Shopware\Core\Content\Product\Subscriber\ProductSubscriber::loaded".
{
    "event": "product.loaded",
    "listener": "Shopware\\Core\\Content\\Product\\Subscriber\\ProductSubscriber::loaded"
}
DEBUG 09:44:33 event Notified event "sales_channel.product.loaded" to listener "Shopware\Core\Content\Product\SalesChannel\SalesChannelProductSubscriber::loaded".
{
    "event": "sales_channel.product.loaded",
    "listener": "Shopware\\Core\\Content\\Product\\SalesChannel\\SalesChannelProductSubscriber::loaded"
}
ERROR 09:44:33 request Uncaught PHP Exception Shopware\Core\Content\Product\Exception\ProductNotFoundException: "Product for id 9e949c3591204670be319e08214d4353 not found." at /home/asgsgbnt/www.asg-store.de/vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php line 98
{
    "exception": {}
}
DEBUG 09:44:33 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 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:44:33 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 09:44:33 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 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\ApiVersion\ApiVersionSubscriber::checkIfVersionIsSupported".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\ApiVersion\\ApiVersionSubscriber::checkIfVersionIsSupported"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 09:44:33 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 09:44:33 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 09:44:33 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 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 09:44:33 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 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 09:44:33 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 09:44:33 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 09:44:33 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

ProductNotFoundException

Shopware\Core\Content\Product\Exception\ProductNotFoundException:
Product for id 9e949c3591204670be319e08214d4353 not found.

  at vendor/shopware/core/Content/Product/SalesChannel/Detail/ProductDetailRoute.php:98
  at Shopware\Core\Content\Product\SalesChannel\Detail\ProductDetailRoute->load()
     (vendor/shopware/storefront/Page/Product/ProductLoader.php:58)
  at Shopware\Storefront\Page\Product\ProductLoader->load()
     (vendor/shopware/storefront/Page/Product/ProductPageLoader.php:102)
  at Shopware\Storefront\Page\Product\ProductPageLoader->load()
     (vendor/shopware/storefront/Controller/ProductController.php:92)
  at Shopware\Storefront\Controller\ProductController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:85)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:477)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:450)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:344)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:222)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/HttpKernel.php:163)
  at Shopware\Core\HttpKernel->doHandle()
     (vendor/shopware/core/HttpKernel.php:80)
  at Shopware\Core\HttpKernel->handle()
     (public/index.php:83)