Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
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/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$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 230)
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 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 139)
*/
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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
$kernel = $kernel->getHttpCache();
}
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {
goto redirect_scheme;
}
}
throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
}
private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
{
$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 106)
*/
public function matchRequest(Request $request)
{
$this->request = $request;
$ret = $this->match($request->getPathInfo());
$this->request = null;
return $ret;
}
in
vendor/jms/i18n-routing-bundle/JMS/I18nRoutingBundle/Router/I18nRouter.php
->
matchRequest
(line 179)
if (!$matcher instanceof RequestMatcherInterface) {
// fallback to the default UrlMatcherInterface
return $this->matchI18n($matcher->match($pathInfo), $pathInfo);
}
return $this->matchI18n($matcher->matchRequest($request), $pathInfo);
}
private function matchI18n(array $params, $url)
{
if (false === $params) {
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 111)
// 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());
}
if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$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 230)
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 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 139)
*/
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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
$kernel = $kernel->getHttpCache();
}
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 05:40:22 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "JMS\I18nRoutingBundle\JMSI18nRoutingBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Omines\DataTablesBundle\DataTablesBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "HWI\Bundle\OAuthBundle\HWIOAuthBundle" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "App\Component\Configuration\Doctrine\DBAL\Types\EmailListType" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: The "DAMA\DoctrineTestBundle\Doctrine\DBAL\VersionAwarePlatformStaticDriver" class implements "Doctrine\DBAL\VersionAwarePlatformDriver" that is deprecated All drivers will have to be aware of the server version in the next major release. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getScheme()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getAuthority()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getUserInfo()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getHost()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getPort()" might add "?int" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getPath()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getQuery()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::getFragment()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withScheme()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withUserInfo()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withHost()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withPort()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withPath()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withQuery()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\UriInterface::withFragment()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 05:40:22 | php |
Deprecated: Return type of Money\Currencies\ISOCurrencies::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice { "exception": {} } |
INFO 05:40:22 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://mbobanen.staging.03.getnoticed.nl/_profiler/latest?ip=66.249.79.99", "method": "GET" } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
INFO 05:40:22 | doctrine |
Connecting with parameters {params} { "params": { "url": "<redacted>", "charset": "utf8mb4", "driver": "pdo_mysql", "host": "127.0.0.1", "port": 3306, "user": "mbobanen_db", "password": "<redacted>", "driverOptions": [], "serverVersion": "mariadb-10.4.17", "defaultTableOptions": { "charset": "utf8mb4", "collate": "utf8mb4_unicode_ci" }, "dama.keep_static": true, "dama.connection_name": "default", "dbname": "mbobanen_db" } } |
DEBUG 05:40:22 | doctrine |
Executing query: SELECT DATABASE() { "sql": "SELECT DATABASE()" } |
DEBUG 05:40:22 | doctrine |
Executing statement: SELECT g0_.id AS id_0, g0_.title AS title_1, g0_.location AS location_2, g0_.script AS script_3, g0_.type AS type_4 FROM google_tag_manager g0_ WHERE g0_.type = ? (parameters: {params}, types: {types}) { "sql": "SELECT g0_.id AS id_0, g0_.title AS title_1, g0_.location AS location_2, g0_.script AS script_3, g0_.type AS type_4 FROM google_tag_manager g0_ WHERE g0_.type = ?", "params": { "1": "script" }, "types": { "1": 2 } } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\RequestInterface::getRequestTarget()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\RequestInterface::withRequestTarget()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\RequestInterface::getMethod()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\RequestInterface::withMethod()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\RequestInterface::getUri()" might add "UriInterface" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\RequestInterface::withUri()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::getProtocolVersion()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::withProtocolVersion()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::getHeaders()" might add "array" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::hasHeader()" might add "bool" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::getHeader()" might add "array" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::getHeaderLine()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::withHeader()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::withAddedHeader()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::withoutHeader()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::getBody()" might add "StreamInterface" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:40:22 | php |
User Deprecated: Method "Psr\Http\Message\MessageInterface::withBody()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse". { "event": "kernel.response", "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addCSPHeader". { "event": "kernel.response", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addCSPHeader" } |
DEBUG 05:40:22 | 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 05:40:22 | 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 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Component\Analytics\Helper\AdminRequestChecksExistingScriptsSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Analytics\\Helper\\AdminRequestChecksExistingScriptsSubscriber::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addNonceToScripts". { "event": "kernel.response", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addNonceToScripts" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Robots\AddDefaultRobotsOnKernelResponse::onResponse". { "event": "kernel.response", "listener": "App\\Robots\\AddDefaultRobotsOnKernelResponse::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 05:40:22 | 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" } |
INFO 05:40:22 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce" } |
DEBUG 05:40:22 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:40:22 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse". { "event": "kernel.response", "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addCSPHeader". { "event": "kernel.response", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addCSPHeader" } |
DEBUG 05:40:22 | 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 05:40:22 | 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 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Component\Analytics\Helper\AdminRequestChecksExistingScriptsSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Analytics\\Helper\\AdminRequestChecksExistingScriptsSubscriber::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addNonceToScripts". { "event": "kernel.response", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addNonceToScripts" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "App\Robots\AddDefaultRobotsOnKernelResponse::onResponse". { "event": "kernel.response", "listener": "App\\Robots\\AddDefaultRobotsOnKernelResponse::onResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 05:40:22 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 05:40:22 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 05:40:22 | 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 05:40:22 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 05:40:22 | 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" } |
INFO 05:40:23 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 05:40:23 | 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 05:40:23 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce" } |
DEBUG 05:40:23 | event |
Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts". { "event": "kernel.request", "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 05:40:23 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
Stack Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET https://mbobanen.staging.03.getnoticed.nl/favicon.ico" at vendor/symfony/http-kernel/EventListener/RouterListener.php:135 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:31) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: No routes found for "/favicon.ico/". at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74 at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match() (vendor/symfony/routing/Matcher/UrlMatcher.php:106) at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest() (vendor/jms/i18n-routing-bundle/JMS/I18nRoutingBundle/Router/I18nRouter.php:179) at JMS\I18nRoutingBundle\Router\I18nRouter->matchRequest() (vendor/symfony/http-kernel/EventListener/RouterListener.php:111) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:31) |