https://stage-mdr.mw-hosting.net/detail/a5668a4660e34e19b825e14703308461

Exceptions

Product for id a5668a4660e34e19b825e14703308461 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(object(Request)) 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

Level Channel Message
DEBUG 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 php User Deprecated: The "Symfony\Component\Debug\DebugClassLoader" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.
{
    "exception": {}
}
INFO 10:59:45 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://stage-mdr.mw-hosting.net/_profiler/latest?ip=40.77.167.51",
    "method": "GET"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Acris\PersistentCart\Subscriber\ResponseSubscriber::setSessionToken".
{
    "event": "kernel.request",
    "listener": "Acris\\PersistentCart\\Subscriber\\ResponseSubscriber::setSessionToken"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setRouterContext".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setRouterContext"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setCanonicalUrl".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setCanonicalUrl"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "KielCodingPlatformTrailingSlash\TrailingSlash\RequestSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "KielCodingPlatformTrailingSlash\\TrailingSlash\\RequestSubscriber::onRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT15183\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT15183\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT14883\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT14883\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Gbmed\Form\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Gbmed\\Form\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15681\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15681\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15675\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15675\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT20305\SecurityFix::onSwitchCustomer".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT20305\\SecurityFix::onSwitchCustomer"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 request Matched route "_profiler_exception_css".
{
    "route": "_profiler_exception_css",
    "route_parameters": {
        "_route": "_profiler_exception_css",
        "_controller": "web_profiler.controller.exception_panel::stylesheet",
        "token": "f7bd1a"
    },
    "request_uri": "https://stage-mdr.mw-hosting.net/_profiler/f7bd1a/exception.css",
    "method": "GET"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Acris\PersistentCart\Subscriber\ResponseSubscriber::setSessionToken".
{
    "event": "kernel.request",
    "listener": "Acris\\PersistentCart\\Subscriber\\ResponseSubscriber::setSessionToken"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setRouterContext".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setRouterContext"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setCanonicalUrl".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setCanonicalUrl"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "KielCodingPlatformTrailingSlash\TrailingSlash\RequestSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "KielCodingPlatformTrailingSlash\\TrailingSlash\\RequestSubscriber::onRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT15183\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT15183\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT14883\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT14883\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Gbmed\Form\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Gbmed\\Form\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15681\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15681\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15675\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15675\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT20305\SecurityFix::onSwitchCustomer".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT20305\\SecurityFix::onSwitchCustomer"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke".
{
    "event": "kernel.response",
    "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.response" to listener "Maxia\MaxiaLazyLoader6\Subscriber\Storefront::onResponse".
{
    "event": "kernel.response",
    "listener": "Maxia\\MaxiaLazyLoader6\\Subscriber\\Storefront::onResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Swag\Security\Fixes\NEXT20305\SecurityFix::onGetAdditionalPrivileges".
{
    "event": "kernel.response",
    "listener": "Swag\\Security\\Fixes\\NEXT20305\\SecurityFix::onGetAdditionalPrivileges"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::onIframeResponse".
{
    "event": "kernel.response",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::onIframeResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::__invoke"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::setResponseCache".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::setResponseCache"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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"
}
INFO 10:59:45 request Matched route "_profiler_search_bar".
{
    "route": "_profiler_search_bar",
    "route_parameters": {
        "_route": "_profiler_search_bar",
        "_controller": "web_profiler.controller.profiler::searchBarAction"
    },
    "request_uri": "https://stage-mdr.mw-hosting.net/_profiler/search_bar?ip=40.77.167.51",
    "method": "GET"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Acris\PersistentCart\Subscriber\ResponseSubscriber::setSessionToken".
{
    "event": "kernel.request",
    "listener": "Acris\\PersistentCart\\Subscriber\\ResponseSubscriber::setSessionToken"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setRouterContext".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setRouterContext"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setCanonicalUrl".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setCanonicalUrl"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "KielCodingPlatformTrailingSlash\TrailingSlash\RequestSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "KielCodingPlatformTrailingSlash\\TrailingSlash\\RequestSubscriber::onRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT15183\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT15183\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT14883\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT14883\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Gbmed\Form\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Gbmed\\Form\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15681\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15681\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15675\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15675\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT20305\SecurityFix::onSwitchCustomer".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT20305\\SecurityFix::onSwitchCustomer"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke".
{
    "event": "kernel.response",
    "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders".
{
    "event": "kernel.response",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.response" to listener "Maxia\MaxiaLazyLoader6\Subscriber\Storefront::onResponse".
{
    "event": "kernel.response",
    "listener": "Maxia\\MaxiaLazyLoader6\\Subscriber\\Storefront::onResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Swag\Security\Fixes\NEXT20305\SecurityFix::onGetAdditionalPrivileges".
{
    "event": "kernel.response",
    "listener": "Swag\\Security\\Fixes\\NEXT20305\\SecurityFix::onGetAdditionalPrivileges"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::onIframeResponse".
{
    "event": "kernel.response",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::onIframeResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::__invoke"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 10:59:45 event Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Cache\CacheResponseSubscriber::setResponseCache".
{
    "event": "kernel.response",
    "listener": "Shopware\\Storefront\\Framework\\Cache\\CacheResponseSubscriber::setResponseCache"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 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 10:59:45 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"
}
INFO 10:59:45 request Matched route "_profiler_exception".
{
    "route": "_profiler_exception",
    "route_parameters": {
        "_route": "_profiler_exception",
        "_controller": "web_profiler.controller.exception_panel::body",
        "token": "f7bd1a"
    },
    "request_uri": "https://stage-mdr.mw-hosting.net/_profiler/f7bd1a/exception",
    "method": "GET"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Acris\PersistentCart\Subscriber\ResponseSubscriber::setSessionToken".
{
    "event": "kernel.request",
    "listener": "Acris\\PersistentCart\\Subscriber\\ResponseSubscriber::setSessionToken"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setRouterContext".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setRouterContext"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "She\StorefrontUrls\Components\ChannelListener::setCanonicalUrl".
{
    "event": "kernel.request",
    "listener": "She\\StorefrontUrls\\Components\\ChannelListener::setCanonicalUrl"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 10:59:45 event Notified event "kernel.request" to listener "KielCodingPlatformTrailingSlash\TrailingSlash\RequestSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "KielCodingPlatformTrailingSlash\\TrailingSlash\\RequestSubscriber::onRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:59:45 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 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Csrf\CsrfRouteListener::csrfCheck".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Csrf\\CsrfRouteListener::csrfCheck"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT15183\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT15183\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Swag\Security\Fixes\NEXT14883\SecurityFix::onKernelRequest".
{
    "event": "kernel.controller",
    "listener": "Swag\\Security\\Fixes\\NEXT14883\\SecurityFix::onKernelRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 10:59:45 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 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Gbmed\Form\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Gbmed\\Form\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 10:59:45 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15681\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15681\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT15675\SecurityFix::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT15675\\SecurityFix::onControllerArguments"
}
DEBUG 10:59:45 event Notified event "kernel.controller_arguments" to listener "Swag\Security\Fixes\NEXT20305\SecurityFix::onSwitchCustomer".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\Security\\Fixes\\NEXT20305\\SecurityFix::onSwitchCustomer"
}
DEBUG 10:59:45 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 10:59:45 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 a5668a4660e34e19b825e14703308461 not found.

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