Exceptions
Exception
Shopware\Core\Content\LandingPage\ LandingPageException
Show exception properties
Shopware\Core\Content\LandingPage\LandingPageException {#17679 -statusCode: 404 -headers: [] #parameters: array:1 [ "landingPageId" => "01975f5fc352789881fdd6964080369c" ] #statusCode: 404 #errorCode: "CONTENT__LANDING_PAGE_NOT_FOUND" }
{public const EXCEPTION_CODE_LANDING_PAGE_NOT_FOUND = 'CONTENT__LANDING_PAGE_NOT_FOUND';public static function notFound(string $id): self{return new self(404,self::EXCEPTION_CODE_LANDING_PAGE_NOT_FOUND,'Landing page "{{ landingPageId }}" not found.',['landingPageId' => $id]);
in
vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php
::
notFound
(line 94)
$criteria->addFilter(new EqualsFilter('active', true));$criteria->addFilter(new EqualsFilter('salesChannels.id', $context->getSalesChannelId()));$landingPage = $this->landingPageRepository->search($criteria, $context)->getEntities()->get($landingPageId);if (!$landingPage instanceof LandingPageEntity) {throw LandingPageException::notFound($landingPageId);}return $landingPage;}
in
vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php
->
loadLandingPage
(line 56)
#[Route(path: '/store-api/landing-page/{landingPageId}', name: 'store-api.landing-page.detail', methods: ['POST'])]public function load(string $landingPageId, Request $request, SalesChannelContext $context): LandingPageRouteResponse{$this->cacheTagCollector->addTag(self::buildName($landingPageId));$landingPage = $this->loadLandingPage($landingPageId, $context);$pageId = $landingPage->getCmsPageId();if (!$pageId) {return new LandingPageRouteResponse($landingPage);
in
vendor/symfony/http-kernel/HttpKernel.php
->
load
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php
->
handle
(line 72)
$this->dispatcher->dispatch($event);return $event->getResponse();}return parent::handle($request, $type, $catch);}}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());}try {return $kernel->handle($request, $type, $catch);} finally {// restore global stateRequest::setTrustedProxies($trustedProxies, $trustedHeaderSet);}}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 466)
protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response{$this->surrogate?->addSurrogateCapability($request);// always a "master" request (as the real master request can be in cache)$response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);/** Support stale-if-error given on Responses or as a config option.* RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual* Cache-Control directives) that
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 268)
*/protected function pass(Request $request, bool $catch = false): Response{$this->record($request, 'pass');return $this->forward($request, $catch);}/*** Invalidates non-safe methods (like POST, PUT, and DELETE).*
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
pass
(line 282)
** @see RFC2616 13.10*/protected function invalidate(Request $request, bool $catch = false): Response{$response = $this->pass($request, $catch);// invalidate only when the response is successfulif ($response->isSuccessful() || $response->isRedirect()) {try {$this->store->invalidate($request);
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
invalidate
(line 202)
}$this->traces[$this->getTraceKey($request)] = [];if (!$request->isMethodSafe()) {$response = $this->invalidate($request, $catch);} elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {$response = $this->pass($request, $catch);} elseif ($this->options['allow_reload'] && $request->isNoCache()) {/*If allow_reload is configured and the client requests "Cache-Control: no-cache",
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 61)
// only handle main request inside http cache, because ESI tags are also interpreted as main request.// sub requests are requests, which are forwarded to the kernel inside the php stack// https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894if ($type === HttpKernelInterface::MAIN_REQUEST) {$response = parent::handle($request, $type, $catch);} elseif ($request->attributes->has('_sw_esi')) {$response = parent::handle($request, $type, $catch);} else {$response = $this->getKernel()->handle($request, $type, $catch);}
in
vendor/shopware/core/Kernel.php
->
handle
(line 128)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response{$this->boot();return $this->getHttpKernel()->handle($request, $type, $catch);}public function boot(): void{if (!$this->booted) {
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/homepages/u78777/shopware-stagingkeep/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;use Symfony\Component\HttpFoundation\Response;$_SERVER['SCRIPT_FILENAME'] = __FILE__;require_once __DIR__ . '/../vendor/autoload_runtime.php';if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {$_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;}
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 23:37:33 | 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": {}
}
|
| DEBUG 23:37:33 | 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 23:37:33 | 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 23:37:33 | cache |
Lock acquired, now computing item "system-config-" {
"key": "system-config-"
}
|
| INFO 23:37:33 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\Search\EntityAggregatorInterface" interface is considered internal. It may change without further notice. You should not use it from "Swag\Security\Fixes\GHSAm8952hj38cg9\EntityAggregatorDecorator". {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: The "Shopware\Core\Framework\Routing\CanonicalRedirectService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Scop\PlatformRedirecter\Decorator\CanonicalRedirectServiceDecorator". {
"exception": {}
}
|
| INFO 23:37:33 | cache |
Lock acquired, now computing item "acrisDiscountGroupDateRangeCacheKey" {
"key": "acrisDiscountGroupDateRangeCacheKey"
}
|
| INFO 23:37:33 | cache |
Lock acquired, now computing item "routing-domains" {
"key": "routing-domains"
}
|
| DEBUG 23:37:33 | 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"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Acris\DiscountGroup\Storefront\Subscriber\DiscountGroupCacheSubscriber::onHttpCacheKey". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
"listener": "Acris\\DiscountGroup\\Storefront\\Subscriber\\DiscountGroupCacheSubscriber::onHttpCacheKey"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::onHttpCacheKeyEvent". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
"listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::onHttpCacheKeyEvent"
}
|
| INFO 23:37:33 | cache |
Lock acquired, now computing item "context-factory-018ec1ff8b377483bca900f254d62091-80f9132df64fa0f6813886ec8286ce71" {
"key": "context-factory-018ec1ff8b377483bca900f254d62091-80f9132df64fa0f6813886ec8286ce71"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | 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"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$id is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: Creation of dynamic property Alpha\EuropeanTax\Core\Content\TaxRule\TaxChangeExtensionEntity::$taxRule is deprecated {
"exception": {}
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| INFO 23:37:33 | 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\DiscountGroup\Storefront\Subscriber\ChangeDecimalPlacesSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 23:37:33 | 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 23:37:33 | 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"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\System\SalesChannel\Event\SalesChannelContextCreatedEvent" to listener "Acris\DiscountGroup\Storefront\Subscriber\ChangeDecimalPlacesSubscriber::changeDecimalPlacesIfNeeded". {
"event": "Shopware\\Core\\System\\SalesChannel\\Event\\SalesChannelContextCreatedEvent",
"listener": "Acris\\DiscountGroup\\Storefront\\Subscriber\\ChangeDecimalPlacesSubscriber::changeDecimalPlacesIfNeeded"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\System\SalesChannel\Event\SalesChannelContextCreatedEvent" to listener "AmPriceManipulation\Subscriber\CustomerGroupSwitchSubscriber::onSalesChannelContextCreated". {
"event": "Shopware\\Core\\System\\SalesChannel\\Event\\SalesChannelContextCreatedEvent",
"listener": "AmPriceManipulation\\Subscriber\\CustomerGroupSwitchSubscriber::onSalesChannelContextCreated"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\System\SalesChannel\Event\SalesChannelContextCreatedEvent" to listener "Shopware\Commercial\B2B\OrganizationUnit\Subscriber\Login\SalesChannelContextRestoredSubscriber::onSalesChannelContextCreated". {
"event": "Shopware\\Core\\System\\SalesChannel\\Event\\SalesChannelContextCreatedEvent",
"listener": "Shopware\\Commercial\\B2B\\OrganizationUnit\\Subscriber\\Login\\SalesChannelContextRestoredSubscriber::onSalesChannelContextCreated"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\System\SalesChannel\Event\SalesChannelContextCreatedEvent" to listener "Maxia\MaxiaTaxSwitch6\Storefront\Subscriber\StorefrontSubscriber::onSalesChannelContextCreated". {
"event": "Shopware\\Core\\System\\SalesChannel\\Event\\SalesChannelContextCreatedEvent",
"listener": "Maxia\\MaxiaTaxSwitch6\\Storefront\\Subscriber\\StorefrontSubscriber::onSalesChannelContextCreated"
}
|
| INFO 23:37:33 | php |
User Deprecated: The "Acris\DiscountGroup\Core\Framework\Adapter\Twig\Filter\CurrencyFilter" class extends "Shopware\Core\Framework\Adapter\Twig\Filter\CurrencyFilter" that is deprecated tag:v6.8.0 - class will be marked internal - reason:becomes-internal. {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: The "Shopware\Core\Framework\Adapter\Twig\Filter\CurrencyFilter::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Acris\DiscountGroup\Core\Framework\Adapter\Twig\Filter\CurrencyFilter". {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: Method "Shopware\Core\Framework\Adapter\Twig\Filter\CurrencyFilter::formatCurrency()" might add "float|string" as a native return type declaration in the future. Do the same in child class "Acris\DiscountGroup\Core\Framework\Adapter\Twig\Filter\CurrencyFilter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Neon\Configurator\Twig\ConfigurationExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Neon\Configurator\Twig\DateExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "MoorlFoundation\Core\Framework\Twig\ListingExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: The "Shopware\Core\Checkout\Cart\LineItemFactoryRegistry" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Neon\Configurator\Services\Stock\Decorations\CheckStockIfLineItemQuantityGetsUpdatedService". {
"exception": {}
}
|
| INFO 23:37:33 | php |
User Deprecated: The "Shopware\Core\Checkout\Cart\LineItemFactoryRegistry::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Neon\Configurator\Services\Stock\Decorations\CheckStockIfLineItemQuantityGetsUpdatedService". {
"exception": {}
}
|
| INFO 23:37:33 | cache |
Lock acquired, now computing item "cart_rules" {
"key": "cart_rules"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Shopware\Core\Framework\DataAbstractionLayer\EntityProtection\EntityProtectionValidator::validateEntitySearch". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Shopware\\Core\\Framework\\DataAbstractionLayer\\EntityProtection\\EntityProtectionValidator::validateEntitySearch"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "Swag\Security\Fixes\GHSAm8952hj38cg9\MediaVisibilityRestrictionSubscriber::securePrivateFolders". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "Swag\\Security\\Fixes\\GHSAm8952hj38cg9\\MediaVisibilityRestrictionSubscriber::securePrivateFolders"
}
|
| INFO 23:37:33 | app | #1 Rule detection: Sales Channel: B2C endlich-sicher.de with priority 200 (id: 0194ae2aae51730a86296eff8c435ad2) |
| INFO 23:37:33 | app | #2 Rule detection: Cart >= 0 (Payment) with priority 100 (id: 018ea92e73ca7380b0ef6a42aa05b798) |
| INFO 23:37:33 | app | #3 Rule detection: Cart >= 0 with priority 100 (id: 018ea92e73e870f0a0e8ccab5dffd6db) |
| INFO 23:37:33 | app | #4 Rule detection: Always valid (Default) with priority 100 (id: 018ea92e9aba73189d039cf9b78a9b63) |
| INFO 23:37:33 | app | #5 Rule detection: Vorkasse 0,5% with priority 100 (id: 0190c17903b776ec9696b5654731848f) |
| INFO 23:37:33 | app | #6 Rule detection: UPS Sperrgut with priority 100 (id: 0191311d085b70e389f0c18b5a6aa062) |
| INFO 23:37:33 | app | #7 Rule detection: UPS Sperrgut DE with priority 100 (id: 0191311d0936707d9e7c93ea3329ba0f) |
| INFO 23:37:33 | app | #8 Rule detection: Abholung im City-Fachmarkt (kostenfrei) with priority 100 (id: 0191311d094c70d487698505268bd714) |
| INFO 23:37:33 | app | #9 Rule detection: nicht AS-Kunde with priority 5 (id: 0198e50ef698763da005f050b8a044fc) |
| INFO 23:37:33 | app | #10 Rule detection: Kunden - Tag: Blacklist with priority 1 (id: 019560dbaaf073579ecb39be1de4bd1f) |
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheCookieEvent" to listener "Shopware\Commercial\B2B\AdvancedProductCatalogs\Subscriber\Cache\CacheHashBuildSubscriber::addOrganizationIdToHash". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheCookieEvent",
"listener": "Shopware\\Commercial\\B2B\\AdvancedProductCatalogs\\Subscriber\\Cache\\CacheHashBuildSubscriber::addOrganizationIdToHash"
}
|
| DEBUG 23:37:33 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheCookieEvent" to listener "Shopware\Commercial\B2B\AdvancedProductCatalogs\Subscriber\Cache\CacheHashBuildSubscriber::addOrganizationIdToHash". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheCookieEvent",
"listener": "Shopware\\Commercial\\B2B\\AdvancedProductCatalogs\\Subscriber\\Cache\\CacheHashBuildSubscriber::addOrganizationIdToHash"
}
|
| INFO 23:37:33 | 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 "Kiener\MolliePayments\Subscriber\WebhookTimezoneSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 23:37:33 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "http://stagingkeep.endlich-sicher.de/_profiler/latest?ip=3.220.148.166&type=request",
"method": "GET"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "AmPriceManipulation\Subscriber\UtmWatcherSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "AmPriceManipulation\\Subscriber\\UtmWatcherSubscriber::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Crsw\CleverReachOfficial\Subscriber\Maintenance\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\Maintenance\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Kiener\MolliePayments\Subscriber\WebhookTimezoneSubscriber::fixWebhookTimezone". {
"event": "kernel.request",
"listener": "Kiener\\MolliePayments\\Subscriber\\WebhookTimezoneSubscriber::fixWebhookTimezone"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::__invoke"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Prems\Plugin\PremsOnePageCheckout6\Subscriber\RequestSubscriber::onRequest". {
"event": "kernel.request",
"listener": "Prems\\Plugin\\PremsOnePageCheckout6\\Subscriber\\RequestSubscriber::onRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Service\EntityAutoCacheService::onRequest". {
"event": "kernel.request",
"listener": "MoorlFoundation\\Core\\Service\\EntityAutoCacheService::onRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "MoorlFoundation\Core\Subscriber\KernelEventSubscriber::onRequest". {
"event": "kernel.request",
"listener": "MoorlFoundation\\Core\\Subscriber\\KernelEventSubscriber::onRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Endereco\Shopware6ClientStore\Subscriber\CustomerAddressSubscriber::markStorefrontContext". {
"event": "kernel.controller",
"listener": "Endereco\\Shopware6ClientStore\\Subscriber\\CustomerAddressSubscriber::markStorefrontContext"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\CustomerGroups\CustomerGroupSubscriber::saveDataForDelete". {
"event": "kernel.controller",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\CustomerGroups\\CustomerGroupSubscriber::saveDataForDelete"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Customers\CustomerSubscriber::saveDataForDelete". {
"event": "kernel.controller",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\Customers\\CustomerSubscriber::saveDataForDelete"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\NewsletterRecipients\NewsletterRecipientSubscriber::saveDataForDelete". {
"event": "kernel.controller",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\NewsletterRecipients\\NewsletterRecipientSubscriber::saveDataForDelete"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\SalesChannels\SalesChannelSubscriber::saveDataForDelete". {
"event": "kernel.controller",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\SalesChannels\\SalesChannelSubscriber::saveDataForDelete"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\AutomationSubscriber::onCheckoutRegistration". {
"event": "kernel.controller",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\AutomationSubscriber::onCheckoutRegistration"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Crsw\CleverReachOfficial\Subscriber\Automation\CartRecoverySubscriber::onRecover". {
"event": "kernel.controller",
"listener": "Crsw\\CleverReachOfficial\\Subscriber\\Automation\\CartRecoverySubscriber::onRecover"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Kiener\MolliePayments\Subscriber\KernelSubscriber::onModifyRouteScope". {
"event": "kernel.controller",
"listener": "Kiener\\MolliePayments\\Subscriber\\KernelSubscriber::onModifyRouteScope"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Swag\PayPal\Checkout\ExpressCheckout\ExpressCheckoutSubscriber::mapShippingCallbackContextToken". {
"event": "kernel.controller",
"listener": "Swag\\PayPal\\Checkout\\ExpressCheckout\\ExpressCheckoutSubscriber::mapShippingCallbackContextToken"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | 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 23:37:33 | 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 23:37:33 | 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 23:37:33 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 23:37:33 | 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 23:37:33 | 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 23:37:33 | event |
Notified event "kernel.controller_arguments" to listener "AkuCmsFactory\Subscriber\CmsElementSubscriber::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "AkuCmsFactory\\Subscriber\\CmsElementSubscriber::onControllerArguments"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller_arguments" to listener "ContainerN5xhE3e\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerN5xhE3e\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 23:37:33 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| INFO 23:37:33 | php |
Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | php |
Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated {
"exception": {}
}
|
| INFO 23:37:33 | 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 23:37:33 | php |
User Deprecated: The "Shopware\Core\Checkout\Cart\LineItemFactoryHandler\ProductLineItemFactory::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Neon\Configurator\Services\Cart\ConfiguratorProductLineItemFactory". {
"exception": {}
}
|
| INFO 23:37:33 | 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 "Kiener\MolliePayments\Subscriber\PaypalExpressSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
Stack Trace
|
LandingPageException
|
|---|
Shopware\Core\Content\LandingPage\LandingPageException:
Landing page "01975f5fc352789881fdd6964080369c" not found.
at vendor/shopware/core/Content/LandingPage/LandingPageException.php:15
at Shopware\Core\Content\LandingPage\LandingPageException::notFound('01975f5fc352789881fdd6964080369c')
(vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php:94)
at Shopware\Core\Content\LandingPage\SalesChannel\LandingPageRoute->loadLandingPage('01975f5fc352789881fdd6964080369c', object(SalesChannelContext))
(vendor/shopware/core/Content/LandingPage/SalesChannel/LandingPageRoute.php:56)
at Shopware\Core\Content\LandingPage\SalesChannel\LandingPageRoute->load('01975f5fc352789881fdd6964080369c', object(Request), object(SalesChannelContext))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:466)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:268)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->pass(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:282)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:202)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
(vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:61)
at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
(vendor/shopware/core/Kernel.php:128)
at Shopware\Core\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/homepages/u78777/shopware-stagingkeep/vendor/autoload_runtime.php')
(public/index.php:11)
|