Exceptions
Exception
ErrorException
Show exception properties
ErrorException {#2572 #severity: E_NOTICE }
return $this->handler->close();}public function gc(int $maxlifetime): int|false{return $this->handler->gc($maxlifetime);}}
in
vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php
->
gc
(line 64)
return $this->handler->destroy($sessionId);}public function gc(int $maxlifetime): int|false{return $this->handler->gc($maxlifetime);}public function validateId(#[\SensitiveParameter] string $sessionId): bool{return !$this->handler instanceof \SessionUpdateTimestampHandlerInterface || $this->handler->validateId($sessionId);
SessionHandlerProxy->gc(86400)
in
vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
session_start
(line 156)
// the session ID in the header is invalid, create a new onesession_id(session_create_id());}// ok to try and start the sessionif (!session_start()) {throw new \RuntimeException('Failed to start the session.');}$this->loadSession();
in
vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
->
start
(line 280)
}if (!$this->started && $this->saveHandler->isActive()) {$this->loadSession();} elseif (!$this->started) {$this->start();}return $this->bags[$name];}
in
vendor/symfony/http-foundation/Session/Session.php
->
getBag
(line 201)
$this->storage->registerBag(new SessionBagProxy($bag, $this->data, $this->usageIndex, $this->usageReporter));}public function getBag(string $name): SessionBagInterface{$bag = $this->storage->getBag($name);return method_exists($bag, 'getBag') ? $bag->getBag() : $bag;}/**
in
vendor/symfony/http-foundation/Session/Session.php
->
getBag
(line 221)
** Note that this method was added to help with IDE autocompletion.*/private function getAttributeBag(): AttributeBagInterface{return $this->getBag($this->attributeName);}}
in
vendor/symfony/http-foundation/Session/Session.php
->
getAttributeBag
(line 69)
return $this->getAttributeBag()->has($name);}public function get(string $name, mixed $default = null): mixed{return $this->getAttributeBag()->get($name, $default);}public function set(string $name, mixed $value): void{$this->getAttributeBag()->set($name, $value);
in
vendor/shopgate/webcheckout-shopware6/src/Subscribers/ShopgateDetectTrait.php
->
get
(line 39)
}$sgCookie = $this->handleDevelopmentCookie($request);$sgAgent = str_contains((string) $request->headers->get('User-Agent'), 'libshopgate');$hasSession = $request->hasSession();$sgSession = $hasSession && $request->getSession()->get(IsShopgateSubscriber::SG_SESSION_KEY, 0);return $sgAgent || $sgSession || $sgCookie;}/**
in
vendor/shopgate/webcheckout-shopware6/src/Subscribers/IsShopgateSubscriber.php
->
isShopgate
(line 31)
];}public function addTrackers(ControllerEvent $event): void{if (!$this->isShopgate($event->getRequest())) {return;}$event->getRequest()->getSession()->set(self::SG_SESSION_KEY, 1);$event->getRequest()->getSession()->set(OrderService::AFFILIATE_CODE_KEY, 'SGConnect_App');defined(self::IS_WEBCHECKOUT) || define(self::IS_WEBCHECKOUT, true);
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
addTrackers
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/store.shopware.com/swagcommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php
->
dispatch
(line 36)
if ($this->registry->isSubscriptionContext($event) && $this->registry->has($eventName)) {$eventName = SubscriptionEventRegistry::prefixedEventName($eventName);}return $this->decorated->dispatch($event, $eventName);}/*** @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283*/
in
vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php
->
dispatch
(line 50)
** @return TEvent*/public function dispatch(object $event, ?string $eventName = null): object{$event = $this->dispatcher->dispatch($event, $eventName);if (!$event instanceof FlowEventAware) {return $event;}
in
vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php
->
dispatch
(line 70)
) {}public function dispatch(object $event, ?string $eventName = null): object{$event = $this->dispatcher->dispatch($event, $eventName);if (EnvironmentHelper::getVariable('DISABLE_EXTENSIONS', false)) {return $event;}
in
vendor/shopware/core/Framework/Event/NestedEventDispatcher.php
->
dispatch
(line 31)
}$this->dispatch($nested, $name);}}return $this->dispatcher->dispatch($event, $eventName);}/*** @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283*/
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 122)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 171)
if (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);$controller = $event->getController();// controller arguments$arguments = $this->argumentResolver->getArguments($request, $controller, $event->getControllerReflector());
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 461)
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 438)
// avoid that the backend sends no content$subRequest->headers->remove('If-Modified-Since');$subRequest->headers->remove('If-None-Match');$response = $this->forward($subRequest, $catch);if ($response->isCacheable()) {$this->store($request, $response);}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
fetch
(line 336)
}if (null === $entry) {$this->record($request, 'miss');return $this->fetch($request, $catch);}if (!$this->isFreshEnough($request, $entry)) {$this->record($request, 'stale');
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
lookup
(line 214)
reload the cache by fetching a fresh response and caching it (if possible).*/$this->record($request, 'reload');$response = $this->fetch($request, $catch);} else {$response = $this->lookup($request, $catch);}$this->restoreResponseBody($request, $response);if (HttpKernelInterface::MAIN_REQUEST === $type) {
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 65)
// 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 155)
{if (!$this->booted) {$this->boot();}return $this->getHttpKernel()->handle($request, $type, $catch);}public function boot(): void{if ($this->booted === true) {
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('/var/www/share/alphaindustries-stage.dev.hob-by-horse.de/shopware6/releases/20251201-170816/vendor/autoload_runtime.php')
in
public/index.php
(line 10)
use Shopware\Core\Installer\InstallerKernel;use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;$_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 21:59:17 | php |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core 6.7.0: tag:v6.7.0 - The shopware.private_key service will be removed in v6.7.0.0 without replacement {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.sync` is deprecated for service Shopgate\Shopware\System\PaymentHandler\GenericHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\CardsPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\IdealPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\KlarnaAccountPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\KlarnaPayNowPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\KlarnaPayLaterPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\RatepayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\RatepayDirectdebitPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\SepaPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\KlarnaDebitRiskPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\PaypalPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\OneClickPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\GiroPayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\ApplePayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\GooglePayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\BancontactCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\BancontactMobilePaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\AmazonPayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\TwintPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\EpsPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\SwishPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\AlipayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\AlipayHkPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\BlikPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\ClearpayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\Facilypay3xPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\Facilypay4xPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\Facilypay6xPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\Facilypay10xPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\Facilypay12xPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\AfterpayDefaultPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\TrustlyPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\PaysafecardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\GiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\MbwayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\MultibancoPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\WechatpayqrPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\WechatpaywebPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\MobilePayPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\VippsPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\AffirmPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\PayBrightPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\OpenBankingPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\BilliePaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\GivexGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\WebshopGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\KadowereldGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\TCSTestGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\AlbelliGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\BijenkorfGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\VVVGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\GenericGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\GallGallGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\HunkemollerLingerieGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\BeautyGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\SVSGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\FashionChequeGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\DeCadeaukaartGiftCardPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\OnlineBankingFinlandPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | php |
User Deprecated: Since shopware/core : The tag `shopware.payment.method.async` is deprecated for service Adyen\Shopware\Handlers\OnlineBankingPolandPaymentMethodHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 21:59:17 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "cdd3c2"
},
"request_uri": "https://alphaindustries-stage.dev.hob-by-horse.de/_profiler/cdd3c2?panel=exception&type=request",
"method": "GET"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Pickware\MobileAppAuthBundle\OAuth\ApiPinAuthenticationSubscriber::setupPinBasedOAuth". {
"event": "kernel.request",
"listener": "Pickware\\MobileAppAuthBundle\\OAuth\\ApiPinAuthenticationSubscriber::setupPinBasedOAuth"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". {
"event": "kernel.request",
"listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Adyen\Shopware\Subscriber\PaymentSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Adyen\\Shopware\\Subscriber\\PaymentSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "HbH\IndigoCustoms\Subscriber\ProductSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "HbH\\IndigoCustoms\\Subscriber\\ProductSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "HbH\DynamicYield\Component\EventTracking\Subscriber\ProductTrackingSubscriber::onChangeVariant". {
"event": "kernel.request",
"listener": "HbH\\DynamicYield\\Component\\EventTracking\\Subscriber\\ProductTrackingSubscriber::onChangeVariant"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::checkShopgateApiCall". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::checkShopgateApiCall"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::addTrackers". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::addTrackers"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\SessionExtenderSubscriber::handleSession". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\SessionExtenderSubscriber::handleSession"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "RuneLaenen\TwoFactorAuth\Subscriber\CustomerLoginSubscriber::onController". {
"event": "kernel.controller",
"listener": "RuneLaenen\\TwoFactorAuth\\Subscriber\\CustomerLoginSubscriber::onController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Production\Subscriber\BasicAuthSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Shopware\\Production\\Subscriber\\BasicAuthSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\PickwareWms\Device\Subscriber\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice". {
"event": "kernel.controller",
"listener": "Pickware\\PickwareWms\\Device\\Subscriber\\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\PickwareWms\WmsAppVersionValidation\WmsAppVersionValidationSubscriber::validateAppVersion". {
"event": "kernel.controller",
"listener": "Pickware\\PickwareWms\\WmsAppVersionValidation\\WmsAppVersionValidationSubscriber::validateAppVersion"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent". {
"event": "kernel.controller",
"listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "ContainerVZQo6P2\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerVZQo6P2\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke". {
"event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheControlListener::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "Shopware\Core\Framework\Event\BeforeSendResponseEvent" to listener "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke". {
"event": "Shopware\\Core\\Framework\\Event\\BeforeSendResponseEvent",
"listener": "Shopware\\Storefront\\Framework\\Routing\\CanonicalLinkListener::__invoke"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Pickware\MobileAppAuthBundle\OAuth\ApiPinAuthenticationSubscriber::setupPinBasedOAuth". {
"event": "kernel.request",
"listener": "Pickware\\MobileAppAuthBundle\\OAuth\\ApiPinAuthenticationSubscriber::setupPinBasedOAuth"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". {
"event": "kernel.request",
"listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Adyen\Shopware\Subscriber\PaymentSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Adyen\\Shopware\\Subscriber\\PaymentSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "HbH\IndigoCustoms\Subscriber\ProductSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "HbH\\IndigoCustoms\\Subscriber\\ProductSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "HbH\DynamicYield\Component\EventTracking\Subscriber\ProductTrackingSubscriber::onChangeVariant". {
"event": "kernel.request",
"listener": "HbH\\DynamicYield\\Component\\EventTracking\\Subscriber\\ProductTrackingSubscriber::onChangeVariant"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::checkShopgateApiCall". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::checkShopgateApiCall"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::addTrackers". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::addTrackers"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\SessionExtenderSubscriber::handleSession". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\SessionExtenderSubscriber::handleSession"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "RuneLaenen\TwoFactorAuth\Subscriber\CustomerLoginSubscriber::onController". {
"event": "kernel.controller",
"listener": "RuneLaenen\\TwoFactorAuth\\Subscriber\\CustomerLoginSubscriber::onController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Production\Subscriber\BasicAuthSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Shopware\\Production\\Subscriber\\BasicAuthSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\PickwareWms\Device\Subscriber\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice". {
"event": "kernel.controller",
"listener": "Pickware\\PickwareWms\\Device\\Subscriber\\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\PickwareWms\WmsAppVersionValidation\WmsAppVersionValidationSubscriber::validateAppVersion". {
"event": "kernel.controller",
"listener": "Pickware\\PickwareWms\\WmsAppVersionValidation\\WmsAppVersionValidationSubscriber::validateAppVersion"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent". {
"event": "kernel.controller",
"listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "ContainerVZQo6P2\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerVZQo6P2\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "Shopware\Core\Framework\DataAbstractionLayer\Event\EntitySearchedEvent" to listener "HbH\ProjectMainTheme\Subscriber\OrderSubscriber::onEntitySearched". {
"event": "Shopware\\Core\\Framework\\DataAbstractionLayer\\Event\\EntitySearchedEvent",
"listener": "HbH\\ProjectMainTheme\\Subscriber\\OrderSubscriber::onEntitySearched"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Content\\Seo\\SalesChannel\\StoreApiSeoResolver::addSeoInformation"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Adyen\Shopware\Subscriber\Response\PaymentMethodRouteResponseSubscriber::adjustPaymentMethodsResponse". {
"event": "kernel.response",
"listener": "Adyen\\Shopware\\Subscriber\\Response\\PaymentMethodRouteResponseSubscriber::adjustPaymentMethodsResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse". {
"event": "kernel.response",
"listener": "Shopware\\Core\\System\\SalesChannel\\Api\\StoreApiResponseListener::encodeResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseRedirectSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\ShopSwitch\\Subscriber\\ResponseRedirectSubscriber::setResponseCache"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCacheHeader"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Frosh\HtmlMinify\Listener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Frosh\\HtmlMinify\\Listener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriberEventListener::__invoke". {
"event": "kernel.response",
"listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriberEventListener::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Commercial\Licensing\Subscriber\AdminLicenseListener::__invoke". {
"event": "kernel.response",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\AdminLicenseListener::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke". {
"event": "kernel.response",
"listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ResponseHeaderListener::onResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\ControllerExceptionHandling\JsonApiStashedErrorHandler::onResponseEvent". {
"event": "kernel.response",
"listener": "Pickware\\ApiErrorHandlingBundle\\ControllerExceptionHandling\\JsonApiStashedErrorHandler::onResponseEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\JsonApiErrorTranslating\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent". {
"event": "kernel.response",
"listener": "Pickware\\ApiErrorHandlingBundle\\JsonApiErrorTranslating\\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processResponseEvent". {
"event": "kernel.response",
"listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processResponseEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\BeforeSendResponseEventSubscriber::isHasJustLoggedInCookieSet". {
"event": "kernel.response",
"listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\BeforeSendResponseEventSubscriber::isHasJustLoggedInCookieSet"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedIn". {
"event": "kernel.response",
"listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedIn"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedOut". {
"event": "kernel.response",
"listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedOut"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\CategoryPageResponseSubscriber::onPageRendered". {
"event": "kernel.response",
"listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\CategoryPageResponseSubscriber::onPageRendered"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "HbH\DynamicYield\Subscriber\PageSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "HbH\\DynamicYield\\Subscriber\\PageSubscriber::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "RuneLaenen\TwoFactorAuth\Subscriber\ApiOauthTokenSubscriber::onResponse". {
"event": "kernel.response",
"listener": "RuneLaenen\\TwoFactorAuth\\Subscriber\\ApiOauthTokenSubscriber::onResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse". {
"event": "kernel.response",
"listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\Http\\CacheResponseSubscriber::setResponseCache"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseCookieSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\ShopSwitch\\Subscriber\\ResponseCookieSubscriber::setResponseCache"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseCacheSubscriber::setResponseCache". {
"event": "kernel.response",
"listener": "Acris\\ShopSwitch\\Subscriber\\ResponseCacheSubscriber::setResponseCache"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Pickware\MobileAppAuthBundle\OAuth\ApiPinAuthenticationSubscriber::setupPinBasedOAuth". {
"event": "kernel.request",
"listener": "Pickware\\MobileAppAuthBundle\\OAuth\\ApiPinAuthenticationSubscriber::setupPinBasedOAuth"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". {
"event": "kernel.request",
"listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Adyen\Shopware\Subscriber\PaymentSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Adyen\\Shopware\\Subscriber\\PaymentSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "HbH\IndigoCustoms\Subscriber\ProductSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "HbH\\IndigoCustoms\\Subscriber\\ProductSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "HbH\DynamicYield\Component\EventTracking\Subscriber\ProductTrackingSubscriber::onChangeVariant". {
"event": "kernel.request",
"listener": "HbH\\DynamicYield\\Component\\EventTracking\\Subscriber\\ProductTrackingSubscriber::onChangeVariant"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::checkShopgateApiCall". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::checkShopgateApiCall"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::addTrackers". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::addTrackers"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\SessionExtenderSubscriber::handleSession". {
"event": "kernel.controller",
"listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\SessionExtenderSubscriber::handleSession"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "RuneLaenen\TwoFactorAuth\Subscriber\CustomerLoginSubscriber::onController". {
"event": "kernel.controller",
"listener": "RuneLaenen\\TwoFactorAuth\\Subscriber\\CustomerLoginSubscriber::onController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Production\Subscriber\BasicAuthSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Shopware\\Production\\Subscriber\\BasicAuthSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\PickwareWms\Device\Subscriber\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice". {
"event": "kernel.controller",
"listener": "Pickware\\PickwareWms\\Device\\Subscriber\\SaveDeviceToContextSubscriber::enrichContextWithPickwareDevice"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\PickwareWms\WmsAppVersionValidation\WmsAppVersionValidationSubscriber::validateAppVersion". {
"event": "kernel.controller",
"listener": "Pickware\\PickwareWms\\WmsAppVersionValidation\\WmsAppVersionValidationSubscriber::validateAppVersion"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent". {
"event": "kernel.controller",
"listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments"
}
|
| DEBUG 21:59:17 | 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 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments"
}
|
| DEBUG 21:59:17 | event |
Notified event "kernel.controller_arguments" to listener "ContainerVZQo6P2\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerVZQo6P2\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 21:59:17 | 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"
}
|
Stack Trace
|
ErrorException
|
|---|
ErrorException:
Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)
at vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php:87
at Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler->gc(86400)
(vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php:64)
at Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy->gc(86400)
at session_start()
(vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:156)
at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
(vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:280)
at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->getBag('attributes')
(vendor/symfony/http-foundation/Session/Session.php:201)
at Symfony\Component\HttpFoundation\Session\Session->getBag('attributes')
(vendor/symfony/http-foundation/Session/Session.php:221)
at Symfony\Component\HttpFoundation\Session\Session->getAttributeBag()
(vendor/symfony/http-foundation/Session/Session.php:69)
at Symfony\Component\HttpFoundation\Session\Session->get('sgWebView', 0)
(vendor/shopgate/webcheckout-shopware6/src/Subscribers/ShopgateDetectTrait.php:39)
at Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber->isShopgate(object(Request))
(vendor/shopgate/webcheckout-shopware6/src/Subscribers/IsShopgateSubscriber.php:31)
at Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber->addTrackers(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ControllerEvent), 'kernel.controller', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.controller', object(ControllerEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
(vendor/store.shopware.com/swagcommercial/src/Subscription/Framework/Event/SubscriptionEventDispatcher.php:36)
at Shopware\Commercial\Subscription\Framework\Event\SubscriptionEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
(vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:50)
at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
(vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:70)
at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
(vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ControllerEvent), 'kernel.controller')
(vendor/symfony/http-kernel/HttpKernel.php:171)
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:461)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:438)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:336)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:214)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
(vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65)
at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
(vendor/shopware/core/Kernel.php:155)
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('/var/www/share/alphaindustries-stage.dev.hob-by-horse.de/shopware6/releases/20251201-170816/vendor/autoload_runtime.php')
(public/index.php:10)
|