Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#3721 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {
$message .= sprintf(' (from "%s")', $referer);
}
throw new NotFoundHttpException($message, $e);
} catch (MethodNotAllowedException $e) {
$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
}
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
->
onKernelRequest
(line 57)
$request = $event->getRequest();
// This call is required in all cases, because the default router needs our webspace information
// Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
$this->requestAnalyzer->analyze($request);
$this->baseRouteListener->onKernelRequest($event);
if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {
$this->requestAnalyzer->validate($request);
}
}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
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/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
// When using the HttpCache, you need to call the method in your front controller
// instead of relying on the configuration parameter
// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
in
vendor/symfony-cmf/routing/src/ChainRouter.php
(line 180)
$info = $request
? "this request\n$request"
: "url '$pathinfo'";
throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
}
/**
* {@inheritdoc}
*
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 134)
*
* Loops through all routes and tries to match the passed request.
*/
public function matchRequest(Request $request): array
{
return $this->doMatch($request->getPathInfo(), $request);
}
/**
* Loops through all routers and tries to match the passed request or url.
*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 105)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
$this->logger?->info('Matched route "{route}".', [
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
->
onKernelRequest
(line 57)
$request = $event->getRequest();
// This call is required in all cases, because the default router needs our webspace information
// Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
$this->requestAnalyzer->analyze($request);
$this->baseRouteListener->onKernelRequest($event);
if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {
$this->requestAnalyzer->validate($request);
}
}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
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/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
// When using the HttpCache, you need to call the method in your front controller
// instead of relying on the configuration parameter
// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\PHPCRBundle\DoctrinePHPCRBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::registerCommands()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\PHPCRBundle\DoctrinePHPCRBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::boot()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\PHPCRBundle\DoctrinePHPCRBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::shutdown()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\PHPCRBundle\DoctrinePHPCRBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "HandcraftedInTheAlps\RestRoutingBundle\RestRoutingBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "JMS\SerializerBundle\JMSSerializerBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Massive\Bundle\SearchBundle\MassiveSearchBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Massive\Bundle\BuildBundle\MassiveBuildBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "ONGR\ElasticsearchBundle\ONGRElasticsearchBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/dependency-injection 6.4: "Symfony\Component\DependencyInjection\ContainerAwareTrait" is deprecated, use dependency injection instead. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Short namespace aliases such as "SuluMediaBundle:Collection" are deprecated and will be removed in Doctrine ORM 3.0. (EntityManager.php:810 called by App_KernelDevDebugContainer.php:2949, https://github.com/doctrine/orm/issues/8818, package doctrine/orm) { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Using XML mapping driver with XSD validation disabled is deprecated and will not be supported in Doctrine ORM 3.0. (XmlDriver.php:60 called by SimplifiedXmlDriver.php:23, https://github.com/doctrine/orm/pull/6728, package doctrine/orm) { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Short namespace aliases such as "SuluMediaBundle:Collection" are deprecated, use ::class constant instead. (AbstractClassMetadataFactory.php:250 called by EntityManager.php:318, https://github.com/doctrine/persistence/issues/204, package doctrine/persistence) { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "10.9.3-MariaDB" instead of "mariadb-10.9". (AbstractMySQLDriver.php:149 called by AbstractMySQLDriver.php:42, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm) { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Support for MariaDB < 10.4 is deprecated and will be removed in DBAL 4. Consider upgrading to a more recent version of MariaDB. (AbstractMySQLDriver.php:55 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/6110, package doctrine/dbal) { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sulu\Component\Persistence\EventSubscriber\ORM\MetadataSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sulu\Component\Persistence\EventSubscriber\ORM\UserBlameSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sulu\Component\Doctrine\ReferencesOption" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Doctrine\ORM\Tools\ResolveTargetEntityListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Massive\Bundle\SearchBundle\Search\EventSubscriber\DoctrineOrmSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sulu\Component\Persistence\EventSubscriber\ORM\TimestampableSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sulu\Bundle\SecurityBundle\EventListener\PermissionInheritanceSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sulu\Bundle\ActivityBundle\Infrastructure\Doctrine\Subscriber\DomainEventCollectorSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::eraseCredentials()" might add "void" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Property" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\PageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\DateShardingSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\WebspaceSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\PageBundle\Form\Type\AbstractStructureBehaviorType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticlePageDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticlePageDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::buildForm()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticleDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\ArticleDocumentType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "Symfony\Component\Form\AbstractType::configureOptions()" might add "void" as a native return type declaration in the future. Do the same in child class "Sulu\Bundle\ArticleBundle\Document\Form\UnstructuredType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getDeclaringNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isAutoCreated()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isMandatory()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getOnParentVersion()" might add "int" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isProtected()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryTypeName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::allowsSameNameSiblings()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Structure\StructureBridge" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\WebsiteArticleUrlsSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::copy()" might add "void" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::cloneFrom()" might add "void" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::move()" might add "void" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::removeItem()" might add "void" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::createWorkspace()" might add "void" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::deleteWorkspace()" might add "void" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "IteratorAggregate::getIterator()" might add "\Traversable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Webspace\Manager\WebspaceCollection" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Localization\Localization" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. { "exception": {} } |
INFO 22:08:19 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 22:08:19 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "f89869" }, "request_uri": "https://www.ecotrade-leipzig.de/_profiler/f89869", "method": "GET" } |
INFO 22:08:19 | deprecation |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. { "exception": {} } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "ContainerEUmPqg2\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerEUmPqg2\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "ContainerEUmPqg2\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerEUmPqg2\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
INFO 22:08:19 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. { "exception": {} } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse". { "event": "kernel.response", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode". { "event": "kernel.response", "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "ContainerEUmPqg2\TrustedCookieResponseListenerGhost893c645::onKernelResponse". { "event": "kernel.response", "listener": "ContainerEUmPqg2\\TrustedCookieResponseListenerGhost893c645::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup". { "event": "kernel.response", "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "ContainerEUmPqg2\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerEUmPqg2\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse". { "event": "kernel.response", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode". { "event": "kernel.response", "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "ContainerEUmPqg2\TrustedCookieResponseListenerGhost893c645::onKernelResponse". { "event": "kernel.response", "listener": "ContainerEUmPqg2\\TrustedCookieResponseListenerGhost893c645::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup". { "event": "kernel.response", "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:08:19 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\ProtectedMediaSubscriber::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\FormBundle\\Event\\ProtectedMediaSubscriber::onRequest" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 22:08:19 | event |
Notified event "kernel.controller_arguments" to listener "ContainerEUmPqg2\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerEUmPqg2\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:08:19 | 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 Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET https://www.ecotrade-leipzig.de/favicon.ico" at vendor/symfony/http-kernel/EventListener/RouterListener.php:127 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57) at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:157) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:197) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:68) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: None of the routers in the chain matched this request GET /favicon.ico HTTP/1.0 Accept: */* Accept-Encoding: gzip, deflate, br Accept-Language: de-DE,de;q=0.9 Connection: close Cookie: _ga_EJLBBV9M2X=GS1.1.1741531809.1.1.1741531981.0.0.0; _ga=GA1.1.2131549383.1741531809; _gat_UA-60048228-2=1; _gcl_au=1.1.837728911.1741531807; _gid=GA1.2.1953401334.1741531809 Host: www.ecotrade-leipzig.de Priority: u=3, i Sec-Fetch-Dest: image Sec-Fetch-Mode: no-cors Sec-Fetch-Site: cross-site User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Mobile/15E148 Safari/604.1 X-Accel-Internal: /internal-nginx-static-location X-Php-Ob-Level: 1 X-Real-Ip: 176.3.70.128 Cookie: _ga_EJLBBV9M2X=GS1.1.1741531809.1.1.1741531981.0.0.0; _ga=GA1.1.2131549383.1741531809; _gat_UA-60048228-2=1; _gcl_au=1.1.837728911.1741531807; _gid=GA1.2.1953401334.1741531809 at vendor/symfony-cmf/routing/src/ChainRouter.php:180 at Symfony\Cmf\Component\Routing\ChainRouter->doMatch() (vendor/symfony-cmf/routing/src/ChainRouter.php:134) at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest() (vendor/symfony/http-kernel/EventListener/RouterListener.php:105) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57) at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:157) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:197) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:68) |