exception |
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#1438
#message: "Unable to find the controller for path "/". The route is wrongly configured."
#code: 0
#file: "/srv/www/hermeta/vendor/symfony/http-kernel/HttpKernel.php"
#line: 167
-statusCode: 404
-headers: []
trace: {
/srv/www/hermeta/vendor/symfony/http-kernel/HttpKernel.php:167 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› if (false === $controller = $this->resolver->getController($request)) {
› throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
› }
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/srv/www/hermeta/vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72 {
Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
›
› return parent::handle($request, $type, $catch);
› }
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86 {
Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(HttpKernelInterface $kernel, Request $request, int $type, bool $catch): Response …
› try {
› return $kernel->handle($request, $type, $catch);
› } finally {
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:461 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(Request $request, bool $catch = false, ?Response $entry = null): Response …
› // always a "master" request (as the real master request can be in cache)
› $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
›
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:263 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->pass(Request $request, bool $catch = false): Response …
›
› return $this->forward($request, $catch);
› }
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:277 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate(Request $request, bool $catch = false): Response …
› {
› $response = $this->pass($request, $catch);
›
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:203 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› if (!$request->isMethodSafe()) {
› $response = $this->invalidate($request, $catch);
› } elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {
}
/srv/www/hermeta/vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65 {
Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› if ($type === HttpKernelInterface::MAIN_REQUEST) {
› $response = parent::handle($request, $type, $catch);
› } elseif ($request->attributes->has('_sw_esi')) {
}
/srv/www/hermeta/vendor/shopware/core/Kernel.php:155 {
Shopware\Core\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
›
› return $this->getHttpKernel()->handle($request, $type, $catch);
› }
}
/srv/www/hermeta/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/srv/www/hermeta/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/srv/www/hermeta/public/index.php:10 {
›
› require_once __DIR__ . '/../vendor/autoload_runtime.php';
›
arguments: {
"/srv/www/hermeta/vendor/autoload_runtime.php"
}
}
}
} |
logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#447
-records: [
"" => [
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.692+00:00"
"message" => "User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php"
"priority" => 200
"priorityName" => "INFO"
"context" => [
"exception" => ErrorException {#64
#message: "User Deprecated: Since shopware/core : The Shopware\Core\Service\Service bundle should be added to config/bundles.php"
#code: 0
#file: "/srv/www/hermeta/vendor/shopware/core/Framework/Feature.php"
#line: 250
#severity: E_USER_DEPRECATED
trace: {
/srv/www/hermeta/vendor/shopware/core/Framework/Feature.php:250 {
Shopware\Core\Framework\Feature::triggerDeprecationOrThrow(string $majorFlag, string $message): void …
›
› trigger_deprecation('shopware/core', '', $message);
› }
}
/srv/www/hermeta/vendor/shopware/core/Kernel.php:137 {
Shopware\Core\Kernel->registerBundles(): iterable …
› if ((!Feature::has('v6.7.0.0') || !Feature::isActive('v6.7.0.0')) && !isset($bundles[Service::class])) {
› Feature::triggerDeprecationOrThrow('v6.7.0.0', \sprintf('The %s bundle should be added to config/bundles.php', Service::class));
› yield new Service();
}
/srv/www/hermeta/vendor/symfony/http-kernel/Kernel.php:339 {
Symfony\Component\HttpKernel\Kernel->initializeBundles(): void …
› $this->bundles = [];
› foreach ($this->registerBundles() as $bundle) {
› $name = $bundle->getName();
}
/srv/www/hermeta/vendor/shopware/core/Kernel.php:187 {
Shopware\Core\Kernel->boot(): void …
› // init bundles
› $this->initializeBundles();
›
}
/srv/www/hermeta/vendor/shopware/core/Kernel.php:152 {
Shopware\Core\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› if (!$this->booted) {
› $this->boot();
› }
}
/srv/www/hermeta/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/srv/www/hermeta/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/srv/www/hermeta/public/index.php:10 {
›
› require_once __DIR__ . '/../vendor/autoload_runtime.php';
›
arguments: {
"/srv/www/hermeta/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "php"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "Shopware\Core\Framework\Event\BeforeSendResponseEvent"
"listener" => "Shopware\Core\Framework\Adapter\Cache\Http\CacheControlListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "Shopware\Core\Framework\Event\BeforeSendResponseEvent"
"listener" => "Shopware\Storefront\Framework\Routing\CanonicalLinkListener::__invoke"
]
"channel" => "event"
]
]
736 => [
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Matched route "{route}"."
"priority" => 200
"priorityName" => "INFO"
"context" => [
"route" => "root.fallback"
"route_parameters" => [
"_route" => "root.fallback"
]
"request_uri" => "https://hermeta.shop/"
"method" => "POST"
]
"channel" => "request"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Routing\RouteEventSubscriber::request"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.705+00:00"
"message" => "Unable to look for the controller as the "_controller" parameter is missing."
"priority" => 300
"priorityName" => "WARNING"
"context" => []
"channel" => "request"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.707+00:00"
"message" => "Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "Unable to find the controller for path "/". The route is wrongly configured." at HttpKernel.php line 167"
"priority" => 250
"priorityName" => "NOTICE"
"context" => [
"exception" => Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#1438
#message: "Unable to find the controller for path "/". The route is wrongly configured."
#code: 0
#file: "/srv/www/hermeta/vendor/symfony/http-kernel/HttpKernel.php"
#line: 167
-statusCode: 404
-headers: []
trace: {
/srv/www/hermeta/vendor/symfony/http-kernel/HttpKernel.php:167 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› if (false === $controller = $this->resolver->getController($request)) {
› throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
› }
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/srv/www/hermeta/vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72 {
Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
›
› return parent::handle($request, $type, $catch);
› }
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86 {
Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(HttpKernelInterface $kernel, Request $request, int $type, bool $catch): Response …
› try {
› return $kernel->handle($request, $type, $catch);
› } finally {
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:461 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(Request $request, bool $catch = false, ?Response $entry = null): Response …
› // always a "master" request (as the real master request can be in cache)
› $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
›
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:263 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->pass(Request $request, bool $catch = false): Response …
›
› return $this->forward($request, $catch);
› }
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:277 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate(Request $request, bool $catch = false): Response …
› {
› $response = $this->pass($request, $catch);
›
}
/srv/www/hermeta/vendor/symfony/http-kernel/HttpCache/HttpCache.php:203 {
Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› if (!$request->isMethodSafe()) {
› $response = $this->invalidate($request, $catch);
› } elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {
}
/srv/www/hermeta/vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65 {
Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› if ($type === HttpKernelInterface::MAIN_REQUEST) {
› $response = parent::handle($request, $type, $catch);
› } elseif ($request->attributes->has('_sw_esi')) {
}
/srv/www/hermeta/vendor/shopware/core/Kernel.php:155 {
Shopware\Core\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
›
› return $this->getHttpKernel()->handle($request, $type, $catch);
› }
}
/srv/www/hermeta/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/srv/www/hermeta/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/srv/www/hermeta/public/index.php:10 {
›
› require_once __DIR__ . '/../vendor/autoload_runtime.php';
›
arguments: {
"/srv/www/hermeta/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Storefront\Framework\Routing\DomainNotMappedListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Administration\Framework\Routing\NotFound\AdministrationNotFoundSubscriber::onError"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::customerNotLoggedInHandler"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Core\Framework\Api\EventListener\ResponseExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Shopware\Storefront\Framework\Routing\NotFound\NotFoundSubscriber::onError"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Listener "{listener}" stopped propagation of the event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Routing\RouteEventSubscriber::response"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.736+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
1769 => [
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.708+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Shopware\Core\Framework\Routing\RouteEventSubscriber::request"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerHIgCXpd\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.709+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Content\Seo\SalesChannel\StoreApiSeoResolver::addSeoInformation"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\System\SalesChannel\Api\StoreApiResponseListener::encodeResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCacheHeader"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Profiling\Integration\ServerTiming::onResponseEvent"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Routing\CoreSubscriber::setSecurityHeaders"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Api\EventListener\ResponseHeaderListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Routing\RouteEventSubscriber::response"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Storefront\Framework\Routing\ResponseHeaderListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Shopware\Core\Framework\Adapter\Cache\Http\CacheResponseSubscriber::setResponseCache"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1737658435
"timestamp_rfc3339" => "2025-01-23T18:53:55.733+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
]
-errorCount: [
"" => 0
736 => 0
1769 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#446 …}
} |