Exceptions
Exception
League\OAuth2\Server\Exception\ OAuthServerException
Show exception properties
League\OAuth2\Server\Exception\OAuthServerException {#3367 -httpStatusCode: 401 -errorType: "invalid_request" -hint: "Token has been revoked" -redirectUri: null -payload: array:3 [ "error" => "invalid_request" "error_description" => "The refresh token is invalid." "hint" => "Token has been revoked" ] -serverRequest: null }
*
* @return static
*/
public static function invalidRefreshToken($hint = null, ?Throwable $previous = null)
{
return new static('The refresh token is invalid.', 8, 'invalid_request', 401, $hint, null, $previous);
}
/**
* Access denied.
*
in
vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php
::
invalidRefreshToken
(line 123)
if ($refreshTokenData['expire_time'] < \time()) {
throw OAuthServerException::invalidRefreshToken('Token has expired');
}
if ($this->refreshTokenRepository->isRefreshTokenRevoked($refreshTokenData['refresh_token_id']) === true) {
throw OAuthServerException::invalidRefreshToken('Token has been revoked');
}
return $refreshTokenData;
}
in
vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php
->
validateOldRefreshToken
(line 49)
ResponseTypeInterface $responseType,
DateInterval $accessTokenTTL
) {
// Validate request
$client = $this->validateClient($request);
$oldRefreshToken = $this->validateOldRefreshToken($request, $client->getIdentifier());
$scopes = $this->validateScopes(
$this->getRequestParameter(
'scope',
$request,
\implode(self::SCOPE_DELIMITER_STRING, $oldRefreshToken['scopes'])
in
vendor/league/oauth2-server/src/AuthorizationServer.php
->
respondToAccessTokenRequest
(line 201)
{
foreach ($this->enabledGrantTypes as $grantType) {
if (!$grantType->canRespondToAccessTokenRequest($request)) {
continue;
}
$tokenResponse = $grantType->respondToAccessTokenRequest(
$request,
$this->getResponseType(),
$this->grantTypeAccessTokenTTL[$grantType->getIdentifier()]
);
in
vendor/shopware/core/Framework/Api/Controller/AuthController.php
->
respondToAccessTokenRequest
(line 57)
}
$psr7Request = $this->psrHttpFactory->createRequest($request);
$psr7Response = $this->psrHttpFactory->createResponse($response);
$response = $this->authorizationServer->respondToAccessTokenRequest($psr7Request, $psr7Response);
$this->rateLimiter->reset(RateLimiter::OAUTH, $cacheKey);
return (new HttpFoundationFactory())->createResponse($response);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
token
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response, $event);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php
->
handle
(line 72)
$this->dispatcher->dispatch($event);
return $event->getResponse();
}
return parent::handle($request, $type, $catch);
}
}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
}
try {
return $kernel->handle($request, $type, $catch);
} finally {
// restore global state
Request::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 263)
*/
protected function pass(Request $request, bool $catch = false): Response
{
$this->record($request, 'pass');
return $this->forward($request, $catch);
}
/**
* Invalidates non-safe methods (like POST, PUT, and DELETE).
*
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
pass
(line 277)
*
* @see RFC2616 13.10
*/
protected function invalidate(Request $request, bool $catch = false): Response
{
$response = $this->pass($request, $catch);
// invalidate only when the response is successful
if ($response->isSuccessful() || $response->isRedirect()) {
try {
$this->store->invalidate($request);
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
invalidate
(line 203)
}
$this->traces[$this->getTraceKey($request)] = [];
if (!$request->isMethodSafe()) {
$response = $this->invalidate($request, $catch);
} elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {
$response = $this->pass($request, $catch);
} elseif ($this->options['allow_reload'] && $request->isNoCache()) {
/*
If allow_reload is configured and the client requests "Cache-Control: no-cache",
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 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-1717846894
if ($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.dev.hob-by-horse.de/shopware6/releases/20250523-120400/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 12:16:22 | php |
User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php { "exception": {} } |
INFO 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | 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 12:16:22 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://alphaindustries.dev.hob-by-horse.de/_profiler/latest?ip=216.73.216.178&type=request", "method": "GET" } |
DEBUG 12:16:22 | 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 12:16:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:16:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:16:22 | 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 12:16:22 | 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 12:16:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:16:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "HbH\Shopware5Redirect\Subscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "HbH\\Shopware5Redirect\\Subscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". { "event": "kernel.request", "listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Adyen\Shopware\Subscriber\PaymentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Adyen\\Shopware\\Subscriber\\PaymentSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "HbH\IndigoCustoms\Subscriber\ProductSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "HbH\\IndigoCustoms\\Subscriber\\ProductSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::checkShopgateApiCall". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::checkShopgateApiCall" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::addTrackers". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::addTrackers" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\SessionExtenderSubscriber::handleSession". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\SessionExtenderSubscriber::handleSession" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". { "event": "kernel.controller", "listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Production\Subscriber\BasicAuthSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Shopware\\Production\\Subscriber\\BasicAuthSubscriber::onKernelController" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent". { "event": "kernel.controller", "listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "Container41JyzPC\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container41JyzPC\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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" } |
INFO 12:16:23 | php |
User Deprecated: Since twig/twig 3.12: The "tag" constructor argument of the "Shopware\Core\Framework\Adapter\Twig\Node\ReturnNode" class is deprecated and ignored (check which TokenParser class set it to "return"), the tag is now automatically set by the Parser when needed. { "exception": {} } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "HbH\Shopware5Redirect\Subscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "HbH\\Shopware5Redirect\\Subscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". { "event": "kernel.request", "listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Adyen\Shopware\Subscriber\PaymentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Adyen\\Shopware\\Subscriber\\PaymentSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "HbH\IndigoCustoms\Subscriber\ProductSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "HbH\\IndigoCustoms\\Subscriber\\ProductSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::checkShopgateApiCall". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::checkShopgateApiCall" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::addTrackers". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::addTrackers" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\SessionExtenderSubscriber::handleSession". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\SessionExtenderSubscriber::handleSession" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". { "event": "kernel.controller", "listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Production\Subscriber\BasicAuthSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Shopware\\Production\\Subscriber\\BasicAuthSubscriber::onKernelController" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent". { "event": "kernel.controller", "listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "Container41JyzPC\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container41JyzPC\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.response" to listener "Adyen\Shopware\Subscriber\Response\PaymentMethodRouteResponseSubscriber::adjustPaymentMethodsResponse". { "event": "kernel.response", "listener": "Adyen\\Shopware\\Subscriber\\Response\\PaymentMethodRouteResponseSubscriber::adjustPaymentMethodsResponse" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseRedirectSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Acris\\ShopSwitch\\Subscriber\\ResponseRedirectSubscriber::setResponseCache" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.response" to listener "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent". { "event": "kernel.response", "listener": "Shopware\\Core\\Profiling\\Integration\\ServerTiming::onResponseEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Frosh\Tools\Components\Elasticsearch\AdminInfoSubscriberEventListener::__invoke". { "event": "kernel.response", "listener": "Frosh\\Tools\\Components\\Elasticsearch\\AdminInfoSubscriberEventListener::__invoke" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Shopware\Commercial\Licensing\Subscriber\AdminLicenseListener::__invoke". { "event": "kernel.response", "listener": "Shopware\\Commercial\\Licensing\\Subscriber\\AdminLicenseListener::__invoke" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Swag\Security\Subscriber\AdminSecurityFixesProvider::__invoke". { "event": "kernel.response", "listener": "Swag\\Security\\Subscriber\\AdminSecurityFixesProvider::__invoke" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::setSecurityHeaders" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\ControllerExceptionHandling\JsonApiStashedErrorHandler::onResponseEvent". { "event": "kernel.response", "listener": "Pickware\\ApiErrorHandlingBundle\\ControllerExceptionHandling\\JsonApiStashedErrorHandler::onResponseEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Pickware\ApiErrorHandlingBundle\JsonApiErrorTranslating\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent". { "event": "kernel.response", "listener": "Pickware\\ApiErrorHandlingBundle\\JsonApiErrorTranslating\\AdminApiJsonApiErrorExceptionLocalization::onResponseEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processResponseEvent". { "event": "kernel.response", "listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processResponseEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\BeforeSendResponseEventSubscriber::isHasJustLoggedInCookieSet". { "event": "kernel.response", "listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\BeforeSendResponseEventSubscriber::isHasJustLoggedInCookieSet" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedIn". { "event": "kernel.response", "listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedIn" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedOut". { "event": "kernel.response", "listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\BeforeSendResponseEventSubscriber::hasCustomerJustLoggedOut" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Omikron\FactFinder\Shopware6\Subscriber\CategoryPageResponseSubscriber::onPageRendered". { "event": "kernel.response", "listener": "Omikron\\FactFinder\\Shopware6\\Subscriber\\CategoryPageResponseSubscriber::onPageRendered" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::response". { "event": "kernel.response", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::response" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse". { "event": "kernel.response", "listener": "Shopware\\Storefront\\Framework\\Routing\\ResponseHeaderListener::onResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseCookieSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Acris\\ShopSwitch\\Subscriber\\ResponseCookieSubscriber::setResponseCache" } |
DEBUG 12:16:23 | event |
Notified event "kernel.response" to listener "Acris\ShopSwitch\Subscriber\ResponseCacheSubscriber::setResponseCache". { "event": "kernel.response", "listener": "Acris\\ShopSwitch\\Subscriber\\ResponseCacheSubscriber::setResponseCache" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "HbH\Shopware5Redirect\Subscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "HbH\\Shopware5Redirect\\Subscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". { "event": "kernel.request", "listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". { "event": "kernel.request", "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Acris\ShopSwitch\Subscriber\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone". { "event": "kernel.request", "listener": "Acris\\ShopSwitch\\Subscriber\\LanguageSwitchRequestSubscriber::onKernelRequestAddShopSwitchDone" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Adyen\Shopware\Subscriber\PaymentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Adyen\\Shopware\\Subscriber\\PaymentSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "HbH\IndigoCustoms\Subscriber\ProductSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "HbH\\IndigoCustoms\\Subscriber\\ProductSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\KernelSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\KernelSubscriber::onKernelRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". { "event": "kernel.request", "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::checkShopgateApiCall". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::checkShopgateApiCall" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\IsShopgateSubscriber::addTrackers". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\IsShopgateSubscriber::addTrackers" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopgate\WebcheckoutSW6\Subscribers\SessionExtenderSubscriber::handleSession". { "event": "kernel.controller", "listener": "Shopgate\\WebcheckoutSW6\\Subscribers\\SessionExtenderSubscriber::handleSession" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". { "event": "kernel.controller", "listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Production\Subscriber\BasicAuthSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Shopware\\Production\\Subscriber\\BasicAuthSubscriber::onKernelController" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". { "event": "kernel.controller", "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha" } |
DEBUG 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". { "event": "kernel.controller", "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ApiVersioningBundle\ApiVersioningRequestSubscriber::processControllerEvent". { "event": "kernel.controller", "listener": "Pickware\\ApiVersioningBundle\\ApiVersioningRequestSubscriber::processControllerEvent" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\JsonValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonValidationAnnotationSubscriber::onKernelController" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller" to listener "Pickware\ValidationBundle\Subscriber\AclValidationAnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Pickware\\ValidationBundle\\Subscriber\\AclValidationAnnotationSubscriber::onKernelController" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "Pickware\ValidationBundle\Subscriber\JsonRequestValueResolver::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Pickware\\ValidationBundle\\Subscriber\\JsonRequestValueResolver::onKernelControllerArguments" } |
DEBUG 12:16:23 | 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 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "NetInventors\NetiNextEasyCoupon\Subscriber\EntitySubscriber::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "NetInventors\\NetiNextEasyCoupon\\Subscriber\\EntitySubscriber::onControllerArguments" } |
DEBUG 12:16:23 | event |
Notified event "kernel.controller_arguments" to listener "Container41JyzPC\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container41JyzPC\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments" } |
DEBUG 12:16:23 | 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
OAuthServerException
|
---|
League\OAuth2\Server\Exception\OAuthServerException: The refresh token is invalid. at vendor/league/oauth2-server/src/Exception/OAuthServerException.php:229 at League\OAuth2\Server\Exception\OAuthServerException::invalidRefreshToken('Token has been revoked') (vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php:123) at League\OAuth2\Server\Grant\RefreshTokenGrant->validateOldRefreshToken(object(ServerRequest), 'administration') (vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php:49) at League\OAuth2\Server\Grant\RefreshTokenGrant->respondToAccessTokenRequest(object(ServerRequest), object(BearerTokenResponse), object(DateInterval)) (vendor/league/oauth2-server/src/AuthorizationServer.php:201) at League\OAuth2\Server\AuthorizationServer->respondToAccessTokenRequest(object(ServerRequest), object(Response)) (vendor/shopware/core/Framework/Api/Controller/AuthController.php:57) at Shopware\Core\Framework\Api\Controller\AuthController->token(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:183) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72) at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86) at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:461) at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:263) at Symfony\Component\HttpKernel\HttpCache\HttpCache->pass(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:277) at Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate(object(Request), true) (vendor/symfony/http-kernel/HttpCache/HttpCache.php:203) 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.dev.hob-by-horse.de/shopware6/releases/20250523-120400/vendor/autoload_runtime.php') (public/index.php:10) |