Error 404 Not Found

GET https://billerbeck.shop/staging/topper/topper-gegen-schwitzen

Exceptions

No route found for "GET https://billerbeck.shop/staging/topper/topper-gegen-schwitzen"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#2932
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. }
  2. public function dispatch(object $event, ?string $eventName = null): object
  3. {
  4. if (!License::get('SUBSCRIPTIONS-3156213')) {
  5. return $this->decorated->dispatch($event, $eventName);
  6. }
  7. if (!$eventName) {
  8. $eventName = $event::class;
  9. }
  1. *
  2. * @return TEvent
  3. */
  4. public function dispatch(object $event, ?string $eventName = null): object
  5. {
  6. $event = $this->dispatcher->dispatch($event, $eventName);
  7. if (!$event instanceof FlowEventAware) {
  8. return $event;
  9. }
  1. ) {
  2. }
  3. public function dispatch(object $event, ?string $eventName = null): object
  4. {
  5. $event = $this->dispatcher->dispatch($event, $eventName);
  6. if (!HookableEventFactory::isHookable($event)) {
  7. return $event;
  8. }
  1. }
  2. $this->dispatch($nested, $name);
  3. }
  4. }
  5. return $this->dispatcher->dispatch($event, $eventName);
  6. }
  7. /**
  8. * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9. */
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->dispatcher->dispatch($event);
  2. return $event->getResponse();
  3. }
  4. return parent::handle($request, $type, $catch);
  5. }
  6. }
  1. if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
  2. Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3. }
  4. try {
  5. return $kernel->handle($request, $type, $catch);
  6. } finally {
  7. // restore global state
  8. Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
  9. }
  10. }
  1. protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
  2. {
  3. $this->surrogate?->addSurrogateCapability($request);
  4. // always a "master" request (as the real master request can be in cache)
  5. $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
  6. /*
  7. * Support stale-if-error given on Responses or as a config option.
  8. * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9. * Cache-Control directives) that
  1. // avoid that the backend sends no content
  2. $subRequest->headers->remove('If-Modified-Since');
  3. $subRequest->headers->remove('If-None-Match');
  4. $response = $this->forward($subRequest, $catch);
  5. if ($response->isCacheable()) {
  6. $this->store($request, $response);
  7. }
  1. }
  2. if (null === $entry) {
  3. $this->record($request, 'miss');
  4. return $this->fetch($request, $catch);
  5. }
  6. if (!$this->isFreshEnough($request, $entry)) {
  7. $this->record($request, 'stale');
  1. $response = $this->fetch($request, $catch);
  2. } else {
  3. $response = null;
  4. do {
  5. try {
  6. $response = $this->lookup($request, $catch);
  7. } catch (CacheWasLockedException) {
  8. }
  9. } while (null === $response);
  10. }
  1. // only handle main request inside http cache, because ESI tags are also interpreted as main request.
  2. // sub requests are requests, which are forwarded to the kernel inside the php stack
  3. // https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
  4. if ($type === HttpKernelInterface::MAIN_REQUEST) {
  5. $response = parent::handle($request, $type, $catch);
  6. } elseif ($request->attributes->has('_sw_esi')) {
  7. $response = parent::handle($request, $type, $catch);
  8. } else {
  9. $response = $this->getKernel()->handle($request, $type, $catch);
  10. }
in vendor/shopware/core/Kernel.php -> handle (line 129)
  1. public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
  2. {
  3. $this->boot();
  4. return $this->getHttpKernel()->handle($request, $type, $catch);
  5. }
  6. public function boot(): void
  7. {
  8. if (!$this->booted) {
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/devwuvkx/www.dev.billerbeck.shop/staging/releases/216/vendor/autoload_runtime.php') in public/index.php (line 10)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ . '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
  6. $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/topper/topper-gegen-schwitzen/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. public function matchRequest(Request $request): array
  2. {
  3. $this->request = $request;
  4. $ret = $this->match($request->getPathInfo());
  5. $this->request = null;
  6. return $ret;
  7. }
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  1. ['REQUEST_URI' => $request->attributes->get(RequestTransformer::SALES_CHANNEL_RESOLVED_URI)]
  2. );
  3. $localClone = $request->duplicate(null, null, null, null, null, $server);
  4. return $this->decorated->matchRequest($localClone);
  5. }
  6. public function setContext(RequestContext $context): void
  7. {
  8. $this->decorated->setContext($context);
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. }
  2. public function dispatch(object $event, ?string $eventName = null): object
  3. {
  4. if (!License::get('SUBSCRIPTIONS-3156213')) {
  5. return $this->decorated->dispatch($event, $eventName);
  6. }
  7. if (!$eventName) {
  8. $eventName = $event::class;
  9. }
  1. *
  2. * @return TEvent
  3. */
  4. public function dispatch(object $event, ?string $eventName = null): object
  5. {
  6. $event = $this->dispatcher->dispatch($event, $eventName);
  7. if (!$event instanceof FlowEventAware) {
  8. return $event;
  9. }
  1. ) {
  2. }
  3. public function dispatch(object $event, ?string $eventName = null): object
  4. {
  5. $event = $this->dispatcher->dispatch($event, $eventName);
  6. if (!HookableEventFactory::isHookable($event)) {
  7. return $event;
  8. }
  1. }
  2. $this->dispatch($nested, $name);
  3. }
  4. }
  5. return $this->dispatcher->dispatch($event, $eventName);
  6. }
  7. /**
  8. * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9. */
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->dispatcher->dispatch($event);
  2. return $event->getResponse();
  3. }
  4. return parent::handle($request, $type, $catch);
  5. }
  6. }
  1. if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
  2. Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3. }
  4. try {
  5. return $kernel->handle($request, $type, $catch);
  6. } finally {
  7. // restore global state
  8. Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
  9. }
  10. }
  1. protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
  2. {
  3. $this->surrogate?->addSurrogateCapability($request);
  4. // always a "master" request (as the real master request can be in cache)
  5. $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
  6. /*
  7. * Support stale-if-error given on Responses or as a config option.
  8. * RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
  9. * Cache-Control directives) that
  1. // avoid that the backend sends no content
  2. $subRequest->headers->remove('If-Modified-Since');
  3. $subRequest->headers->remove('If-None-Match');
  4. $response = $this->forward($subRequest, $catch);
  5. if ($response->isCacheable()) {
  6. $this->store($request, $response);
  7. }
  1. }
  2. if (null === $entry) {
  3. $this->record($request, 'miss');
  4. return $this->fetch($request, $catch);
  5. }
  6. if (!$this->isFreshEnough($request, $entry)) {
  7. $this->record($request, 'stale');
  1. $response = $this->fetch($request, $catch);
  2. } else {
  3. $response = null;
  4. do {
  5. try {
  6. $response = $this->lookup($request, $catch);
  7. } catch (CacheWasLockedException) {
  8. }
  9. } while (null === $response);
  10. }
  1. // only handle main request inside http cache, because ESI tags are also interpreted as main request.
  2. // sub requests are requests, which are forwarded to the kernel inside the php stack
  3. // https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
  4. if ($type === HttpKernelInterface::MAIN_REQUEST) {
  5. $response = parent::handle($request, $type, $catch);
  6. } elseif ($request->attributes->has('_sw_esi')) {
  7. $response = parent::handle($request, $type, $catch);
  8. } else {
  9. $response = $this->getKernel()->handle($request, $type, $catch);
  10. }
in vendor/shopware/core/Kernel.php -> handle (line 129)
  1. public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
  2. {
  3. $this->boot();
  4. return $this->getHttpKernel()->handle($request, $type, $catch);
  5. }
  6. public function boot(): void
  7. {
  8. if (!$this->booted) {
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/devwuvkx/www.dev.billerbeck.shop/staging/releases/216/vendor/autoload_runtime.php') in public/index.php (line 10)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ . '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
  6. $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
INFO 09:39:38 php User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: Method "Shopware\Core\System\SystemConfig\SystemConfigService::get()" might add "array|bool|float|int|string|null" as a native return type declaration in the future. Do the same in child class "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::all()" method is considered internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\System\SystemConfig\SystemConfigService::getDomain()" method is considered internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag. It may change without further notice. You should not extend it from "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: Method "Shopware\Core\System\SystemConfig\SystemConfigService::trace()" might add "TReturn" as a native return type declaration in the future. Do the same in child class "Pickware\ShopwareExtensionsBundle\Mail\SystemConfigServiceDecorator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\DefinitionInstanceRegistry::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\PickwareErpStarter\OrderPickability\Decorator\DefinitionInstanceRegistryDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\DefinitionInstanceRegistry::getResolver()" might add "AbstractFieldResolver" as a native return type declaration in the future. Do the same in child class "Pickware\PickwareErpStarter\OrderPickability\Decorator\DefinitionInstanceRegistryDecorator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Framework\Adapter\Cache\CacheTagCollector::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheTagCollector::__invoke"
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Profiling\Subscriber\CacheTagCollectorSubscriber::add".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
    "listener": "Shopware\\Core\\Profiling\\Subscriber\\CacheTagCollectorSubscriber::add"
}
INFO 09:39:38 cache Lock acquired, now computing item "system-config-"
{
    "key": "system-config-"
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\Dbal\CriteriaQueryBuilder" class is considered internal. It may change without further notice. You should not use it from "Pickware\PickwareWms\OrderSearch\CriteriaQueryBuilderDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\Dbal\CriteriaQueryBuilder" class is considered internal. It may change without further notice. You should not use it from "Pickware\PickwareErpStarter\OrderPickability\Decorator\CriteriaQueryBuilderDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: Since symfony/var-exporter 7.3: The "Symfony\Component\VarExporter\LazyGhostTrait" trait is deprecated, use native lazy objects instead.
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class uses "Symfony\Component\VarExporter\LazyGhostTrait" that is deprecated since Symfony 7.3, use native lazy objects instead.
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: DreiscSeoPro\Core\Foundation\Dal\EntityRepository::get(): Implicitly marking parameter $associations as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Pickware\PickwareErpStarter\Stock\Decorator\ProductRepositoryDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\PickwareErpStarter\Stock\Decorator\ProductRepositoryDecorator".
{
    "exception": {}
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Dtgs\GoogleTagManager\Subscriber\HttpCacheKeySubscriber::onHttpCacheKey".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
    "listener": "Dtgs\\GoogleTagManager\\Subscriber\\HttpCacheKeySubscriber::onHttpCacheKey"
}
INFO 09:39:38 php Deprecated: NetInventors\NetiNextEasyCoupon\Service\PluginConfigFactory::create(): Implicitly marking parameter $salesChannelId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: NetInventors\NetiNextEasyCoupon\Serializer\Normalizer\PluginConfigDenormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: NetInventors\NetiNextEasyCoupon\Serializer\Normalizer\PluginConfigDenormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\Telemetry\EntityTelemetrySubscriber::emitAssociationsCountMetric".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Telemetry\\EntityTelemetrySubscriber::emitAssociationsCountMetric"
}
DEBUG 09:39:38 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:39:38 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Content\Media\Subscriber\MediaVisibilityRestrictionSubscriber::securePrivateFolders".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "Shopware\\Core\\Content\\Media\\Subscriber\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\CustomerSubscriber::onEntitySearched".
{
    "event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
    "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\CustomerSubscriber::onEntitySearched"
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\Api\OAuth\ScopeRepository::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\MobileAppAuthBundle\OAuth\ScopeRepository".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\System\SalesChannel\Context\SalesChannelContextFactory::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Acris\CountryTax\Core\System\SalesChannel\Context\SalesChannelContextFactory".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\RateLimiter\RateLimiterFactory::__construct()" method is considered internal. It may change without further notice. You should not extend it from "NetInventors\NetiNextEasyCoupon\Service\RateLimiter\RateLimiterFactory".
{
    "exception": {}
}
INFO 09:39:38 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "1d19f5"
    },
    "request_uri": "https://staging.billerbeck.shop/_profiler/1d19f5?panel=exception&type=request",
    "method": "GET"
}
DEBUG 09:39:38 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:39:38 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:39:38 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:39:38 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:39:38 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:39:38 event Notified event "kernel.request" to listener "Pickware\MobileAppAuthBundle\OAuth\ApiPinAuthenticationSubscriber::setupPinBasedOAuth".
{
    "event": "kernel.request",
    "listener": "Pickware\\MobileAppAuthBundle\\OAuth\\ApiPinAuthenticationSubscriber::setupPinBasedOAuth"
}
DEBUG 09:39:38 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:39:38 event Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 09:39:38 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:39:38 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:39:38 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:39:38 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:39:38 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:39:38 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:39:38 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 09:39:38 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::__invoke"
}
DEBUG 09:39:38 event Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
DEBUG 09:39:38 event Notified event "kernel.request" to listener "Shopware\Commercial\B2B\EmployeeManagement\Api\Annotation\B2bRouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Api\\Annotation\\B2bRouteParamsCleanupListener::__invoke"
}
DEBUG 09:39:38 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:39:38 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:39:38 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:39:38 event Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest"
}
DEBUG 09:39:38 event Notified event "kernel.request" to listener "Prems\Plugin\PremsOnePageCheckout6\Subscriber\RequestSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Prems\\Plugin\\PremsOnePageCheckout6\\Subscriber\\RequestSubscriber::onRequest"
}
DEBUG 09:39:38 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
INFO 09:39:38 php Deprecated: DreiscSeoPro\Core\CustomSetting\CustomSettingLoader::load(): Implicitly marking parameter $salesChannelId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: DreiscSeoPro\Core\Foundation\CustomSettingEntity\CustomSettingEntityService::fetchCustomSettingsBySalesChannelId(): Implicitly marking parameter $salesChannelId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Framework\Adapter\Cache\CacheTagCollector::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheTagCollector::__invoke"
}
DEBUG 09:39:38 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Profiling\Subscriber\CacheTagCollectorSubscriber::add".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
    "listener": "Shopware\\Core\\Profiling\\Subscriber\\CacheTagCollectorSubscriber::add"
}
INFO 09:39:38 php Deprecated: Creation of dynamic property Weedesign\Images2WebP\Storefront\Framework\Twig\Extension\UrlEncodingTwigFilter::$cwd is deprecated
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Pickware\PickwareErpStarter\Document\EntityRepositoryDecorator\ForcedVersionOrderRepositoryDecorator".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Pickware\PickwareErpStarter\Document\EntityRepositoryDecorator\ForcedVersionOrderRepositoryDecorator".
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Service\BusinessLogic\Orders\OrderService::getOrderItemsByCustomerEmail(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Service\BusinessLogic\Search\ProductSearchService::formatItem(): Implicitly marking parameter $parentProduct as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Service\BusinessLogic\Search\ProductSearchService::getImageUrl(): Implicitly marking parameter $parentProduct as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\BusinessLogic\Http\Proxy::__construct(): Implicitly marking parameter $authService as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\Infrastructure\Utility\TimeProvider::serializeDate(): Implicitly marking parameter $dateTime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\BusinessLogic\Automation\AbandonedCart\Contracts\AbandonedCartSettingsService::set(): Implicitly marking parameter $settings as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\BusinessLogic\Automation\AbandonedCart\Contracts\AbandonedCartEntityService::set(): Implicitly marking parameter $data as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Entity\Base\Repositories\BaseRepository::select(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Entity\Base\Repositories\BaseRepository::selectOne(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Entity\Base\Repositories\BaseRepository::count(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Entity\Base\Repositories\BaseRepository::getBaseDoctrineQuery(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\Infrastructure\ORM\Interfaces\RepositoryInterface::select(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\Infrastructure\ORM\Interfaces\RepositoryInterface::selectOne(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\Infrastructure\ORM\Interfaces\RepositoryInterface::count(): Implicitly marking parameter $filter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\BusinessLogic\Scheduler\Models\Schedule::__construct(): Implicitly marking parameter $task as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Entity\Stats\Repositories\StatsRepository::deleteWhere(): Implicitly marking parameter $queryFilter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Core\BusinessLogic\ORM\Interfaces\ConditionallyDeletes::deleteWhere(): Implicitly marking parameter $queryFilter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php Deprecated: Crsw\CleverReachOfficial\Entity\EventsBuffer\Repositories\EventsBufferRepository::deleteWhere(): Implicitly marking parameter $queryFilter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\Search\RequestCriteriaBuilder::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Dvsn\Mandator\Core\Framework\DataAbstractionLayer\Search\RequestCriteriaBuilder".
{
    "exception": {}
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
DEBUG 09:39:38 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:39:38 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover".
{
    "event": "kernel.controller",
    "listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
DEBUG 09:39:38 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:39:38 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:39:38 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:39:38 event Notified event "kernel.controller" to listener "Swag\PayPal\Checkout\ExpressCheckout\ExpressCheckoutSubscriber::mapShippingCallbackContextToken".
{
    "event": "kernel.controller",
    "listener": "Swag\\PayPal\\Checkout\\ExpressCheckout\\ExpressCheckoutSubscriber::mapShippingCallbackContextToken"
}
DEBUG 09:39:38 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:39:38 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Pickware\PickwareWms\Device\Subscriber\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice".
{
    "event": "kernel.controller",
    "listener": "Pickware\\PickwareWms\\Device\\Subscriber\\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Pickware\PickwareWms\WmsAppVersionValidation\WmsAppVersionValidationSubscriber::validateAppVersion".
{
    "event": "kernel.controller",
    "listener": "Pickware\\PickwareWms\\WmsAppVersionValidation\\WmsAppVersionValidationSubscriber::validateAppVersion"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\EmployeeManagement\Domain\RouteAccess\B2bRouteBlocker::blockRouteForEmployee".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Domain\\RouteAccess\\B2bRouteBlocker::blockRouteForEmployee"
}
DEBUG 09:39:38 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:39:38 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:39:38 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:39:38 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:39:38 event Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\EmployeeManagement\Api\Annotation\B2bEmployeePermissionValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Api\\Annotation\\B2bEmployeePermissionValidator::validate"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\QuickOrder\Api\Annotation\CustomerSpecificFeatureActivated::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Commercial\\B2B\\QuickOrder\\Api\\Annotation\\CustomerSpecificFeatureActivated::validate"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 09:39:38 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:39:38 event Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
DEBUG 09:39:38 event Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
DEBUG 09:39:38 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 09:39:38 event Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
DEBUG 09:39:38 event Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments"
}
DEBUG 09:39:38 event Notified event "kernel.controller_arguments" to listener "Swag\AmazonPay\Framework\EventListeners\AmazonPayAddressValidationListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Swag\\AmazonPay\\Framework\\EventListeners\\AmazonPayAddressValidationListener::onKernelControllerArguments"
}
DEBUG 09:39:38 event Notified event "kernel.controller_arguments" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::setSubscriptionToken".
{
    "event": "kernel.controller_arguments",
    "listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::setSubscriptionToken"
}
DEBUG 09:39:38 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
DEBUG 09:39:38 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"
}
INFO 09:39:38 php Deprecated: DreiscSeoPro\Core\Foundation\CustomSettingEntity\CustomSettingEntityStruct::__construct(): Implicitly marking parameter $salesChannelId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\FieldSerializer\AbstractFieldSerializer" class is considered internal. It may change without further notice. You should not use it from "NetInventors\NetiNextEasyCoupon\Core\Framework\FieldSerializer\Decoration\IntFieldSerializer".
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Redgecko\Magnalister\EventListeners\MagnalisterEventListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 09:39:38 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Acris\CountryTax\Subscriber\ResponseCacheSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://billerbeck.shop/staging/topper/topper-gegen-schwitzen"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/store.shopware.com/swagcommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:25)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:41)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:28)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:466)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:443)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:341)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:216)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:61)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
     (vendor/shopware/core/Kernel.php:129)
  at Shopware\Core\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/devwuvkx/www.dev.billerbeck.shop/staging/releases/216/vendor/autoload_runtime.php')
     (public/index.php:10)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/topper/topper-gegen-schwitzen/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
     (vendor/symfony/routing/Matcher/UrlMatcher.php:90)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
     (vendor/symfony/routing/Router.php:188)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/shopware/storefront/Framework/Routing/Router.php:69)
  at Shopware\Storefront\Framework\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/store.shopware.com/swagcommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:25)
  at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch()
     (vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:41)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:28)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:466)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:443)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:341)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:216)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:61)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
     (vendor/shopware/core/Kernel.php:129)
  at Shopware\Core\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/devwuvkx/www.dev.billerbeck.shop/staging/releases/216/vendor/autoload_runtime.php')
     (public/index.php:10)