exception |
League\OAuth2\Client\Provider\Exception\IdentityProviderException {#763
#message: "invalid_grant"
#code: 0
#file: "/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/GenericProvider.php"
#line: 236
#response: [
"error" => "invalid_grant"
"error_description" => "AADSTS9002313: Invalid request. Request is malformed or invalid. Trace ID: 5e0574aa-47dc-43e8-bef0-3a73237e0600 Correlation ID: e632e91b-0f84-46aa-9ccc-3c976a0c41d7 Timestamp: 2025-08-11 16:56:07Z"
"error_codes" => [
9002313
]
"timestamp" => "2025-08-11 16:56:07Z"
"trace_id" => "5e0574aa-47dc-43e8-bef0-3a73237e0600"
"correlation_id" => "e632e91b-0f84-46aa-9ccc-3c976a0c41d7"
"error_uri" => "https://login.microsoftonline.com/error?code=9002313"
]
trace: {
/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/GenericProvider.php:236 {
League\OAuth2\Client\Provider\GenericProvider->checkResponse(ResponseInterface $response, $data) …
› }
› throw new IdentityProviderException($error, $code, $data);
› }
}
/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/AbstractProvider.php:740 {
League\OAuth2\Client\Provider\AbstractProvider->getParsedResponse(RequestInterface $request) …
›
› $this->checkResponse($response, $parsed);
›
}
/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/AbstractProvider.php:646 {
League\OAuth2\Client\Provider\AbstractProvider->getAccessToken($grant, array $options = []) …
› $request = $this->getAccessTokenRequest($params);
› $response = $this->getParsedResponse($request);
› if (false === is_array($response)) {
}
/home/unabsocial/app/vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php:303 {
Microsoft\Kiota\Authentication\PhpLeagueAccessTokenProvider->requestNewToken(array $params, SpanInterface $span): AccessToken …
› // @phpstan-ignore-next-line
› return $this->oauthProvider->getAccessToken($this->tokenRequestContext->getGrantType(), $params);
› }
}
/home/unabsocial/app/vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php:169 {
Microsoft\Kiota\Authentication\PhpLeagueAccessTokenProvider->getAuthorizationTokenAsync(string $url, array $additionalAuthenticationContext = []): Promise …
› }
› $token = $this->requestNewToken($params, $span);
› $this->cacheToken($token, $span);
}
/home/unabsocial/app/vendor/microsoft/kiota-abstractions/src/Authentication/BaseBearerTokenAuthenticationProvider.php:75 {
Microsoft\Kiota\Abstractions\Authentication\BaseBearerTokenAuthenticationProvider->authenticateRequest(RequestInformation $request, array $additionalAuthenticationContext = []): Promise …
› return $this->getAccessTokenProvider()
› ->getAuthorizationTokenAsync($request->getUri(), $additionalAuthenticationContext)
› ->then(function ($token) use ($request) {
}
/home/unabsocial/app/vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php:541 {
Microsoft\Kiota\Http\GuzzleRequestAdapter->getHttpResponseMessage(RequestInformation $requestInfo, string $claims, SpanInterface $span): Promise …
› $additionalAuthContext = $claims ? ['claims' => $claims] : [];
› $request = $this->authenticationProvider->authenticateRequest($requestInfo, $additionalAuthContext);
› $finalResult = $request->then(
}
/home/unabsocial/app/vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php:144 {
Microsoft\Kiota\Http\GuzzleRequestAdapter->sendAsync(RequestInformation $requestInfo, array $targetCallable, ?array $errorMappings = null): Promise …
›
› $responseMessage = $this->getHttpResponseMessage($requestInfo, '', $span);
› $finalResponse = $responseMessage->then(
}
/home/unabsocial/app/src/Util/MSClient/Me/MeRequestBuilder.php:39 {
App\Util\MSClient\Me\MeRequestBuilder->get(?MeRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise …
› $requestInfo = $this->toGetRequestInformation($requestConfiguration);
› return $this->requestAdapter->sendAsync($requestInfo, [User::class, 'createFromDiscriminatorValue'], null);
› }
}
/home/unabsocial/app/src/Security/UnabAuthenticator.php:80 {
App\Security\UnabAuthenticator->authenticate(Request $request): Passport …
›
› $me = $client->me()->get()->wait();
›
}
/home/unabsocial/app/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php:74 {
Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator->authenticate(Request $request): Passport …
› try {
› $this->passport = $this->authenticator->authenticate($request);
› } finally {
}
/home/unabsocial/app/vendor/symfony/security-http/Authentication/AuthenticatorManager.php:185 {
Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator(AuthenticatorInterface $authenticator, Request $request): Response …
› // get the passport from the Authenticator
› $passport = $authenticator->authenticate($request);
›
}
/home/unabsocial/app/vendor/symfony/security-http/Authentication/AuthenticatorManager.php:167 {
Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators(array $authenticators, Request $request): Response …
›
› $response = $this->executeAuthenticator($authenticator, $request);
› if (null !== $response) {
}
/home/unabsocial/app/vendor/symfony/security-http/Authentication/AuthenticatorManager.php:149 {
Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest(Request $request): Response …
›
› return $this->executeAuthenticators($authenticators, $request);
› }
}
/home/unabsocial/app/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:38 {
Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate(RequestEvent $event): void …
› $request = $event->getRequest();
› $response = $this->authenticatorManager->authenticateRequest($request);
› if (null === $response) {
}
/home/unabsocial/app/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:58 {
Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate(RequestEvent $event): void …
› {
› $this->authenticationManagerListener->authenticate($event);
› }
}
/home/unabsocial/app/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46 {
Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate(RequestEvent $event): void …
› try {
› $this->listener->authenticate($event);
› } catch (LazyResponseException $e) {
}
/home/unabsocial/app/vendor/symfony/security-bundle/Security/LazyFirewallContext.php:61 {
Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->__invoke(RequestEvent $event): void …
› foreach ($listeners as $listener) {
› $listener($event);
›
}
/home/unabsocial/app/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:91 {
Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners(RequestEvent $event, iterable $listeners): void …
› foreach ($requestListeners as $listener) {
› $listener($event);
›
}
/home/unabsocial/app/vendor/symfony/security-http/Firewall.php:92 {
Symfony\Component\Security\Http\Firewall->onKernelRequest(RequestEvent $event) …
›
› $this->callListeners($event, $authenticationListeners());
› }
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/EventDispatcher.php:206 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event): void …
› }
› $listener($event, $eventName, $this);
› }
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
}
/home/unabsocial/app/vendor/symfony/http-kernel/HttpKernel.php:159 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
}
/home/unabsocial/app/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/home/unabsocial/app/vendor/symfony/http-kernel/Kernel.php:182 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
}
/home/unabsocial/app/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/home/unabsocial/app/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/unabsocial/app/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/unabsocial/app/vendor/autoload_runtime.php"
}
}
}
} |
logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#110
-records: [
2 => [
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.229+00:00"
"message" => "Matched route "{route}"."
"priority" => 200
"priorityName" => "INFO"
"context" => [
"route" => "app_security_check"
"route_parameters" => [
"_route" => "app_security_check"
"_controller" => "App\Controller\SecurityController::check"
]
"request_uri" => "https://unab.social/connect/check?code=1.AQYAQY_Ub4GvpUWcHuOZC8J-fHOUaXNn-R9NjjeuqEYZxvX6ABIGAA.AgABBAIAAABVrSpeuWamRam2jAF1XRQEAwDs_wUA9P9kZw6K9M-5bohbNHoCycIz%E2%80%A6"
"method" => "GET"
]
"channel" => "request"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.231+00:00"
"message" => "Checking for authenticator support."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticators" => 2
]
"channel" => "security"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.231+00:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.231+00:00"
"message" => "Checking support on authenticator."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.231+00:00"
"message" => "Authenticator does not support the request."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
]
"channel" => "security"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\UX\Turbo\Request\RequestListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.550+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.551+00:00"
"message" => "Uncaught PHP Exception League\OAuth2\Client\Provider\Exception\IdentityProviderException: "invalid_grant" at GenericProvider.php line 236"
"priority" => 500
"priorityName" => "CRITICAL"
"context" => [
"exception" => League\OAuth2\Client\Provider\Exception\IdentityProviderException {#763
#message: "invalid_grant"
#code: 0
#file: "/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/GenericProvider.php"
#line: 236
#response: [
"error" => "invalid_grant"
"error_description" => "AADSTS9002313: Invalid request. Request is malformed or invalid. Trace ID: 5e0574aa-47dc-43e8-bef0-3a73237e0600 Correlation ID: e632e91b-0f84-46aa-9ccc-3c976a0c41d7 Timestamp: 2025-08-11 16:56:07Z"
"error_codes" => [
9002313
]
"timestamp" => "2025-08-11 16:56:07Z"
"trace_id" => "5e0574aa-47dc-43e8-bef0-3a73237e0600"
"correlation_id" => "e632e91b-0f84-46aa-9ccc-3c976a0c41d7"
"error_uri" => "https://login.microsoftonline.com/error?code=9002313"
]
trace: {
/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/GenericProvider.php:236 {
League\OAuth2\Client\Provider\GenericProvider->checkResponse(ResponseInterface $response, $data) …
› }
› throw new IdentityProviderException($error, $code, $data);
› }
}
/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/AbstractProvider.php:740 {
League\OAuth2\Client\Provider\AbstractProvider->getParsedResponse(RequestInterface $request) …
›
› $this->checkResponse($response, $parsed);
›
}
/home/unabsocial/app/vendor/league/oauth2-client/src/Provider/AbstractProvider.php:646 {
League\OAuth2\Client\Provider\AbstractProvider->getAccessToken($grant, array $options = []) …
› $request = $this->getAccessTokenRequest($params);
› $response = $this->getParsedResponse($request);
› if (false === is_array($response)) {
}
/home/unabsocial/app/vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php:303 {
Microsoft\Kiota\Authentication\PhpLeagueAccessTokenProvider->requestNewToken(array $params, SpanInterface $span): AccessToken …
› // @phpstan-ignore-next-line
› return $this->oauthProvider->getAccessToken($this->tokenRequestContext->getGrantType(), $params);
› }
}
/home/unabsocial/app/vendor/microsoft/kiota-authentication-phpleague/src/PhpLeagueAccessTokenProvider.php:169 {
Microsoft\Kiota\Authentication\PhpLeagueAccessTokenProvider->getAuthorizationTokenAsync(string $url, array $additionalAuthenticationContext = []): Promise …
› }
› $token = $this->requestNewToken($params, $span);
› $this->cacheToken($token, $span);
}
/home/unabsocial/app/vendor/microsoft/kiota-abstractions/src/Authentication/BaseBearerTokenAuthenticationProvider.php:75 {
Microsoft\Kiota\Abstractions\Authentication\BaseBearerTokenAuthenticationProvider->authenticateRequest(RequestInformation $request, array $additionalAuthenticationContext = []): Promise …
› return $this->getAccessTokenProvider()
› ->getAuthorizationTokenAsync($request->getUri(), $additionalAuthenticationContext)
› ->then(function ($token) use ($request) {
}
/home/unabsocial/app/vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php:541 {
Microsoft\Kiota\Http\GuzzleRequestAdapter->getHttpResponseMessage(RequestInformation $requestInfo, string $claims, SpanInterface $span): Promise …
› $additionalAuthContext = $claims ? ['claims' => $claims] : [];
› $request = $this->authenticationProvider->authenticateRequest($requestInfo, $additionalAuthContext);
› $finalResult = $request->then(
}
/home/unabsocial/app/vendor/microsoft/kiota-http-guzzle/src/GuzzleRequestAdapter.php:144 {
Microsoft\Kiota\Http\GuzzleRequestAdapter->sendAsync(RequestInformation $requestInfo, array $targetCallable, ?array $errorMappings = null): Promise …
›
› $responseMessage = $this->getHttpResponseMessage($requestInfo, '', $span);
› $finalResponse = $responseMessage->then(
}
/home/unabsocial/app/src/Util/MSClient/Me/MeRequestBuilder.php:39 {
App\Util\MSClient\Me\MeRequestBuilder->get(?MeRequestBuilderGetRequestConfiguration $requestConfiguration = null): Promise …
› $requestInfo = $this->toGetRequestInformation($requestConfiguration);
› return $this->requestAdapter->sendAsync($requestInfo, [User::class, 'createFromDiscriminatorValue'], null);
› }
}
/home/unabsocial/app/src/Security/UnabAuthenticator.php:80 {
App\Security\UnabAuthenticator->authenticate(Request $request): Passport …
›
› $me = $client->me()->get()->wait();
›
}
/home/unabsocial/app/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php:74 {
Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator->authenticate(Request $request): Passport …
› try {
› $this->passport = $this->authenticator->authenticate($request);
› } finally {
}
/home/unabsocial/app/vendor/symfony/security-http/Authentication/AuthenticatorManager.php:185 {
Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator(AuthenticatorInterface $authenticator, Request $request): Response …
› // get the passport from the Authenticator
› $passport = $authenticator->authenticate($request);
›
}
/home/unabsocial/app/vendor/symfony/security-http/Authentication/AuthenticatorManager.php:167 {
Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators(array $authenticators, Request $request): Response …
›
› $response = $this->executeAuthenticator($authenticator, $request);
› if (null !== $response) {
}
/home/unabsocial/app/vendor/symfony/security-http/Authentication/AuthenticatorManager.php:149 {
Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest(Request $request): Response …
›
› return $this->executeAuthenticators($authenticators, $request);
› }
}
/home/unabsocial/app/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:38 {
Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate(RequestEvent $event): void …
› $request = $event->getRequest();
› $response = $this->authenticatorManager->authenticateRequest($request);
› if (null === $response) {
}
/home/unabsocial/app/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:58 {
Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate(RequestEvent $event): void …
› {
› $this->authenticationManagerListener->authenticate($event);
› }
}
/home/unabsocial/app/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46 {
Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate(RequestEvent $event): void …
› try {
› $this->listener->authenticate($event);
› } catch (LazyResponseException $e) {
}
/home/unabsocial/app/vendor/symfony/security-bundle/Security/LazyFirewallContext.php:61 {
Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext->__invoke(RequestEvent $event): void …
› foreach ($listeners as $listener) {
› $listener($event);
›
}
/home/unabsocial/app/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:91 {
Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners(RequestEvent $event, iterable $listeners): void …
› foreach ($requestListeners as $listener) {
› $listener($event);
›
}
/home/unabsocial/app/vendor/symfony/security-http/Firewall.php:92 {
Symfony\Component\Security\Http\Firewall->onKernelRequest(RequestEvent $event) …
›
› $this->callListeners($event, $authenticationListeners());
› }
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115 {
Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
› try {
› ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
› } finally {
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/EventDispatcher.php:206 {
Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event): void …
› }
› $listener($event, $eventName, $this);
› }
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› if ($listeners) {
› $this->callListeners($listeners, $eventName, $event);
› }
}
/home/unabsocial/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126 {
Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
› try {
› $this->dispatcher->dispatch($event, $eventName);
› } finally {
}
/home/unabsocial/app/vendor/symfony/http-kernel/HttpKernel.php:159 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› $event = new RequestEvent($this, $request, $type);
› $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
›
}
/home/unabsocial/app/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/home/unabsocial/app/vendor/symfony/http-kernel/Kernel.php:182 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
}
/home/unabsocial/app/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/home/unabsocial/app/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/unabsocial/app/public/index.php:5 {
›
› require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
›
arguments: {
"/home/unabsocial/app/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Listener "{listener}" stopped propagation of the event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.589+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.590+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.590+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.590+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.590+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
669 => [
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\UX\Turbo\Request\RequestListener::__invoke"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.552+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.553+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.553+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.553+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.553+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.554+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.554+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.554+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.554+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.554+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.586+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1754931367
"timestamp_rfc3339" => "2025-08-11T16:56:07.587+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
]
-errorCount: [
2 => 1
669 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#109 …}
} |