Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#6242 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$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 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 129)
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 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/oro/customer-portal/src/Oro/Bundle/FrontendBundle/Request/StorefrontSessionHttpKernelDecorator.php
->
handle
(line 53)
$this->sessionStorageOptionsManipulator->setSessionOptions(array_replace($this->originalSessionOptions, $this->currentSessionOptions));}return $this->innerKernel->handle($request, $type, $catch);}#[\Override]public function terminate(Request $request, Response $response): void{
in
vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Request/SessionHttpKernelDecorator.php
->
handle
(line 44)
}}$this->sessionStorageOptionsManipulator->setSessionOptions($this->currentSessionOptions);return $this->innerKernel->handle($request, $type, $catch);}#[\Override]public function terminate(Request $request, Response $response): void{
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 34)
) {}public function run(): int{$response = $this->kernel->handle($this->request);$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {fastcgi_finish_request();
in
vendor/autoload_runtime.php
->
run
(line 40)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phprequire_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new AppKernel($context['ORO_ENV'], (bool) $context['ORO_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($attributes) {return $attributes;}}throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));}/*** Get URL attributes with context URL attributes.*
in
vendor/oro/commerce/src/Oro/Bundle/RedirectBundle/Routing/SlugUrlMatcher.php
->
resolveAttributes
(line 99)
},self::MATCH_MAINTENANCE => $this->getMaintenanceMatcher($pathinfo),self::MATCH_SLUG => $this->getSlugMatcher($pathinfo)];return $this->resolveAttributes($matchers, $pathinfo);}#[\Override]public function match(string $pathinfo): array{
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$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 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 129)
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 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/oro/customer-portal/src/Oro/Bundle/FrontendBundle/Request/StorefrontSessionHttpKernelDecorator.php
->
handle
(line 53)
$this->sessionStorageOptionsManipulator->setSessionOptions(array_replace($this->originalSessionOptions, $this->currentSessionOptions));}return $this->innerKernel->handle($request, $type, $catch);}#[\Override]public function terminate(Request $request, Response $response): void{
in
vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Request/SessionHttpKernelDecorator.php
->
handle
(line 44)
}}$this->sessionStorageOptionsManipulator->setSessionOptions($this->currentSessionOptions);return $this->innerKernel->handle($request, $type, $catch);}#[\Override]public function terminate(Request $request, Response $response): void{
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 34)
) {}public function run(): int{$response = $this->kernel->handle($this->request);$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {fastcgi_finish_request();
in
vendor/autoload_runtime.php
->
run
(line 40)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phprequire_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new AppKernel($context['ORO_ENV'], (bool) $context['ORO_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 06:29:27 | php |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. {
"exception": {}
}
|
| INFO 06:29:27 | php |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. {
"exception": {}
}
|
| INFO 06:29:27 | php |
User Deprecated: Since oro/platform 6.0: Passing "connection: default" to "stof_doctrine_extensions.listener.softdeleteable" tags is default behaviour now. Specify one of "session, config, message_queue, sql_validator, search" or remove default one. {
"exception": {}
}
|
| INFO 06:29:27 | php |
User Deprecated: Since oro/platform 6.0: Passing "connection: default" to "stof_doctrine_extensions.listener.translatable" tags is default behaviour now. Specify one of "session, config, message_queue, sql_validator, search" or remove default one. {
"exception": {}
}
|
| INFO 06:29:27 | php |
User Deprecated: Since oro/platform 6.0: Passing "connection: default" to "doctrine.orm.default_listeners.attach_entity_listeners" tags is default behaviour now. Specify one of "session, config, message_queue, sql_validator, search" or remove default one. {
"exception": {}
}
|
| INFO 06:29:27 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_pgsql",
"idle_connection_ttl": 600,
"host": "platform-db",
"port": 5432,
"user": "dart",
"password": "<redacted>",
"driverOptions": {
"3": 2
},
"serverVersion": "17.6",
"defaultTableOptions": [],
"wrapperClass": "OroDoctrineConnection\\ConnectionProxy_754e9e8332b37b39399f526d7ed901a6",
"dbname": "platformdb",
"sslmode": "disable",
"charset": "utf8"
}
}
|
| DEBUG 06:29:27 | doctrine |
SELECT text_value FROM oro_config_value WHERE name = ? AND section = ? [
"is_installed",
"oro_distribution"
]
|
| DEBUG 06:29:27 | doctrine |
Executing statement: SELECT text_value FROM oro_config_value WHERE name = ? AND section = ? (parameters: {params}, types: {types}) {
"sql": "SELECT text_value FROM oro_config_value WHERE name = ? AND section = ?",
"params": {
"1": "is_installed",
"2": "oro_distribution"
},
"types": {
"1": 2,
"2": 2
}
}
|
| DEBUG 06:29:27 | doctrine | SET application_name TO '9c7fe0c61786395b4219b1b4a1fccc4d' |
| DEBUG 06:29:27 | doctrine |
Executing statement: SET application_name TO '9c7fe0c61786395b4219b1b4a1fccc4d' {
"sql": "SET application_name TO '9c7fe0c61786395b4219b1b4a1fccc4d'"
}
|
| DEBUG 06:29:27 | event |
Notified event "Oro\Bundle\LoggerBundle\Event\SetAppNameEvent" to listener "Oro\Bundle\LoggerBundle\EventSubscriber\Trace\ApplicationNameSubscriber::onTraceSet". {
"event": "Oro\\Bundle\\LoggerBundle\\Event\\SetAppNameEvent",
"listener": "Oro\\Bundle\\LoggerBundle\\EventSubscriber\\Trace\\ApplicationNameSubscriber::onTraceSet"
}
|
| DEBUG 06:29:27 | doctrine |
SELECT o0_.theme AS theme_0 FROM oro_theme_configuration o0_ WHERE o0_.id = ? [
1
]
|
| DEBUG 06:29:27 | doctrine |
Executing statement: SELECT o0_.theme AS theme_0 FROM oro_theme_configuration o0_ WHERE o0_.id = ? (parameters: {params}, types: {types}) {
"sql": "SELECT o0_.theme AS theme_0 FROM oro_theme_configuration o0_ WHERE o0_.id = ?",
"params": {
"1": 1
},
"types": {
"1": 1
}
}
|
| DEBUG 06:29:28 | doctrine |
SELECT t0.id AS id_1, t0.name AS name_2, t0.is_default AS is_default_3, t0.created_at AS created_at_4, t0.updated_at AS updated_at_5, t0.serialized_data AS serialized_data_6, t0.business_unit_owner_id AS business_unit_owner_id_7, t0.organization_id AS organization_id_8, t0.guest_role_id AS guest_role_id_9, t0.default_role_id AS default_role_id_10 FROM oro_website t0 WHERE t0.is_default = ? LIMIT 1 [
true
]
|
| DEBUG 06:29:28 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.is_default AS is_default_3, t0.created_at AS created_at_4, t0.updated_at AS updated_at_5, t0.serialized_data AS serialized_data_6, t0.business_unit_owner_id AS business_unit_owner_id_7, t0.organization_id AS organization_id_8, t0.guest_role_id AS guest_role_id_9, t0.default_role_id AS default_role_id_10 FROM oro_website t0 WHERE t0.is_default = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.is_default AS is_default_3, t0.created_at AS created_at_4, t0.updated_at AS updated_at_5, t0.serialized_data AS serialized_data_6, t0.business_unit_owner_id AS business_unit_owner_id_7, t0.organization_id AS organization_id_8, t0.guest_role_id AS guest_role_id_9, t0.default_role_id AS default_role_id_10 FROM oro_website t0 WHERE t0.is_default = ? LIMIT 1",
"params": {
"1": 1
},
"types": {
"1": 5
}
}
|
| INFO 06:29:28 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "9893cd"
},
"request_uri": "https://dev.light2life.ru/_profiler/9893cd?panel=exception&type=request",
"method": "GET"
}
|
| DEBUG 06:29:28 | security |
Checking for authenticator support. {
"firewall_name": "frontend",
"authenticators": 3
}
|
| DEBUG 06:29:28 | security |
Checking support on authenticator. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 06:29:28 | security |
Authenticator does not support the request. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 06:29:28 | security |
Checking support on authenticator. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 06:29:28 | security |
Authenticator does not support the request. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 06:29:28 | security |
Checking support on authenticator. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/security-http 7.2: Using an empty string as user identifier is deprecated and will throw an exception in Symfony 8.0. {
"exception": {}
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Symfony\Component\Security\Http\EventListener\UserProviderListener::checkPassport". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\UserProviderListener::checkPassport"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Symfony\Component\Security\Http\EventListener\UserProviderListener::checkPassport". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\UserProviderListener::checkPassport"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Oro\Bundle\SecurityBundle\Http\Firewall\CaptchaProtectionListener::checkPassport". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Oro\\Bundle\\SecurityBundle\\Http\\Firewall\\CaptchaProtectionListener::checkPassport"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Symfony\Component\Security\Http\EventListener\CsrfProtectionListener::checkPassport". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\CsrfProtectionListener::checkPassport"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Symfony\Component\Security\Http\EventListener\UserCheckerListener::preCheckCredentials". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\UserCheckerListener::preCheckCredentials"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Symfony\Component\Security\Http\EventListener\CheckCredentialsListener::checkPassport". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\CheckCredentialsListener::checkPassport"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\CheckPassportEvent" to listener "Oro\Bundle\SSOBundle\Event\CheckPassportEventSubscriber::onCheckPassport". {
"event": "Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent",
"listener": "Oro\\Bundle\\SSOBundle\\Event\\CheckPassportEventSubscriber::onCheckPassport"
}
|
| DEBUG 06:29:28 | doctrine |
SELECT o0_.role AS role_0 FROM oro_customer_user_role o0_ WHERE o0_.id = ? [
3
]
|
| DEBUG 06:29:28 | doctrine |
Executing statement: SELECT o0_.role AS role_0 FROM oro_customer_user_role o0_ WHERE o0_.id = ? (parameters: {params}, types: {types}) {
"sql": "SELECT o0_.role AS role_0 FROM oro_customer_user_role o0_ WHERE o0_.id = ?",
"params": {
"1": 3
},
"types": {
"1": 1
}
}
|
| INFO 06:29:28 | app | Populated the TokenStorage with an Anonymous Customer User Token. |
| INFO 06:29:28 | php |
User Deprecated: Since symfony/security-http 7.3: Implementing "Oro\Bundle\CustomerBundle\Entity\CustomerVisitor::eraseCredentials()" is deprecated since Symfony 7.3; add the #[\Deprecated] attribute on the method to signal its either empty or that you moved the logic elsewhere, typically to the "__serialize()" method. {
"exception": {}
}
|
| DEBUG 06:29:28 | event |
Notified event "security.authentication.success" to listener "Symfony\Component\Security\Http\EventListener\UserCheckerListener::postCheckCredentials". {
"event": "security.authentication.success",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\UserCheckerListener::postCheckCredentials"
}
|
| INFO 06:29:28 | security |
Authenticator successful! {
"token": {},
"authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
|
| DEBUG 06:29:28 | event |
Notified event "Symfony\Component\Security\Http\Event\LoginSuccessEvent" to listener "Oro\Bundle\CustomerBundle\Security\Listener\AnonymousSuccessLoginListener::onSuccess". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Oro\\Bundle\\CustomerBundle\\Security\\Listener\\AnonymousSuccessLoginListener::onSuccess"
}
|
| DEBUG 06:29:28 | event |
Listener "Oro\Bundle\CustomerBundle\Security\Listener\AnonymousSuccessLoginListener::onSuccess" stopped propagation of the event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Oro\\Bundle\\CustomerBundle\\Security\\Listener\\AnonymousSuccessLoginListener::onSuccess"
}
|
| DEBUG 06:29:28 | event |
Listener "Oro\Bundle\CheckoutBundle\EventListener\LoginOnCheckoutOrderLimitListener::onCheckoutLogin" was not called for event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Oro\\Bundle\\CheckoutBundle\\EventListener\\LoginOnCheckoutOrderLimitListener::onCheckoutLogin"
}
|
| DEBUG 06:29:28 | event |
Listener "Symfony\Component\Security\Http\EventListener\SessionStrategyListener::onSuccessfulLogin" was not called for event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\SessionStrategyListener::onSuccessfulLogin"
}
|
| DEBUG 06:29:28 | event |
Listener "Oro\Bundle\CheckoutBundle\EventListener\LoginOnCheckoutListener::onCheckoutLogin" was not called for event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Oro\\Bundle\\CheckoutBundle\\EventListener\\LoginOnCheckoutListener::onCheckoutLogin"
}
|
| DEBUG 06:29:28 | event |
Listener "Symfony\Component\Security\Http\EventListener\PasswordMigratingListener::onLoginSuccess" was not called for event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\PasswordMigratingListener::onLoginSuccess"
}
|
| DEBUG 06:29:28 | event |
Listener "Symfony\Component\Security\Http\EventListener\CheckRememberMeConditionsListener::onSuccessfulLogin" was not called for event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\CheckRememberMeConditionsListener::onSuccessfulLogin"
}
|
| DEBUG 06:29:28 | event |
Listener "Symfony\Component\Security\Http\EventListener\RememberMeListener::onSuccessfulLogin" was not called for event "Symfony\Component\Security\Http\Event\LoginSuccessEvent". {
"event": "Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\RememberMeListener::onSuccessfulLogin"
}
|
| DEBUG 06:29:28 | security |
Authenticator set no success response: request continues. {
"authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | event |
Notified event "debug.security.authorization.vote" to listener "Oro\Bundle\SecurityBundle\EventListener\DebugVoteListener::onVoterVote". {
"event": "debug.security.authorization.vote",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\DebugVoteListener::onVoterVote"
}
|
| DEBUG 06:29:28 | doctrine | SELECT o0_.id AS id_0, o0_.name AS name_1, o0_.formatting_code AS formatting_code_2, o0_.rtl_mode AS rtl_mode_3, o0_.created_at AS created_at_4, o0_.updated_at AS updated_at_5, o0_.serialized_data AS serialized_data_6, o0_.language_id AS language_id_7, o0_.parent_id AS parent_id_8 FROM oro_localization o0_ ORDER BY o0_.name ASC |
| DEBUG 06:29:28 | doctrine |
Executing query: SELECT o0_.id AS id_0, o0_.name AS name_1, o0_.formatting_code AS formatting_code_2, o0_.rtl_mode AS rtl_mode_3, o0_.created_at AS created_at_4, o0_.updated_at AS updated_at_5, o0_.serialized_data AS serialized_data_6, o0_.language_id AS language_id_7, o0_.parent_id AS parent_id_8 FROM oro_localization o0_ ORDER BY o0_.name ASC {
"sql": "SELECT o0_.id AS id_0, o0_.name AS name_1, o0_.formatting_code AS formatting_code_2, o0_.rtl_mode AS rtl_mode_3, o0_.created_at AS created_at_4, o0_.updated_at AS updated_at_5, o0_.serialized_data AS serialized_data_6, o0_.language_id AS language_id_7, o0_.parent_id AS parent_id_8 FROM oro_localization o0_ ORDER BY o0_.name ASC"
}
|
| DEBUG 06:29:28 | doctrine |
SELECT t0.id AS id_1, t0.code AS code_2, t0.enabled AS enabled_3, t0.installed_build_date AS installed_build_date_4, t0.local_files_language AS local_files_language_5, t0.created_at AS created_at_6, t0.updated_at AS updated_at_7, t0.organization_id AS organization_id_8 FROM oro_language t0 WHERE t0.id = ? [
1
]
|
| DEBUG 06:29:28 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.code AS code_2, t0.enabled AS enabled_3, t0.installed_build_date AS installed_build_date_4, t0.local_files_language AS local_files_language_5, t0.created_at AS created_at_6, t0.updated_at AS updated_at_7, t0.organization_id AS organization_id_8 FROM oro_language t0 WHERE t0.id = ? (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.code AS code_2, t0.enabled AS enabled_3, t0.installed_build_date AS installed_build_date_4, t0.local_files_language AS local_files_language_5, t0.created_at AS created_at_6, t0.updated_at AS updated_at_7, t0.organization_id AS organization_id_8 FROM oro_language t0 WHERE t0.id = ?",
"params": {
"1": 1
},
"types": {
"1": 1
}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". {
"event": "kernel.request",
"listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". {
"event": "kernel.request",
"listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\LoggerBundle\EventListener\Trace\RequestTraceListener::onRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\LoggerBundle\\EventListener\\Trace\\RequestTraceListener::onRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\MaintenanceBundle\EventListener\MaintenanceListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\MaintenanceBundle\\EventListener\\MaintenanceListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\ApiBundle\EventListener\JsonApiFormatOverrideListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\ApiBundle\\EventListener\\JsonApiFormatOverrideListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\FrontendBundle\EventListener\DraftableFilterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\DraftableFilterListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\MimeTypeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\MimeTypeListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\InstallerBundle\EventListener\RequestListener::onRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\InstallerBundle\\EventListener\\RequestListener::onRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\RedirectBundle\Security\Firewall::onKernelRequestBeforeRouting". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\RedirectBundle\\Security\\Firewall::onKernelRequestBeforeRouting"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\OAuth2ServerBundle\EventListener\RedirectListener::onRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\OAuth2ServerBundle\\EventListener\\RedirectListener::onRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\ApiBundle\EventListener\ErrorHandlingBodyListenerDecorator::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\ApiBundle\\EventListener\\ErrorHandlingBodyListenerDecorator::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\RedirectBundle\Security\Firewall::onKernelRequestAfterRouting". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\RedirectBundle\\Security\\Firewall::onKernelRequestAfterRouting"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\SecurityBundle\Http\Firewall\ContextListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\SecurityBundle\\Http\\Firewall\\ContextListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\LocaleBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\LocaleBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\FrontendBundle\EventListener\GuestAccessRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\GuestAccessRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\OAuth2ServerBundle\EventListener\OldApiAccessRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\OAuth2ServerBundle\\EventListener\\OldApiAccessRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\UIBundle\EventListener\ContentProviderListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\UIBundle\\EventListener\\ContentProviderListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\EmailBundle\EventListener\NotificationAlertsListener::onRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\EmailBundle\\EventListener\\NotificationAlertsListener::onRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\UserBundle\Security\DisabledLoginSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\UserBundle\\Security\\DisabledLoginSubscriber::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\SoapBundle\EventListener\ApiSubRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\SoapBundle\\EventListener\\ApiSubRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\FrontendBundle\EventListener\ThemeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\ThemeListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\WebsiteBundle\EventListener\AssetsRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\WebsiteBundle\\EventListener\\AssetsRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\FeatureToggleBundle\EventListener\RequestListener::onRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\FeatureToggleBundle\\EventListener\\RequestListener::onRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\NavigationBundle\Event\AddMasterRequestRouteListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\NavigationBundle\\Event\\AddMasterRequestRouteListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\ProductBundle\EventListener\WebsiteSearchTerm\RedirectActionTypeSearchPageKernelListener::onKernelEvent". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\ProductBundle\\EventListener\\WebsiteSearchTerm\\RedirectActionTypeSearchPageKernelListener::onKernelEvent"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\CustomerBundle\Security\Listener\CustomerVisitorUpdateLastVisitListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\CustomerBundle\\Security\\Listener\\CustomerVisitorUpdateLastVisitListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\CustomerBundle\Doctrine\DoctrineFiltersListener::onRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\CustomerBundle\\Doctrine\\DoctrineFiltersListener::onRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Component\DraftSession\EventListener\BeginDraftSessionOnRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Component\\DraftSession\\EventListener\\BeginDraftSessionOnRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Component\DraftSession\EventListener\SetDraftSessionUuidToRequestContextListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Component\\DraftSession\\EventListener\\SetDraftSessionUuidToRequestContextListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Component\DraftSession\EventListener\EnableEntityDraftsOnRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Component\\DraftSession\\EventListener\\EnableEntityDraftsOnRequestListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\SoapBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\SoapBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\LayoutBundle\EventListener\ThemeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\LayoutBundle\\EventListener\\ThemeListener::onKernelRequest"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.request" to listener "Oro\Bundle\MessageQueueBundle\Client\RequestWatcher::onRequestStart". {
"event": "kernel.request",
"listener": "Oro\\Bundle\\MessageQueueBundle\\Client\\RequestWatcher::onRequestStart"
}
|
| INFO 06:29:28 | php |
User Deprecated: Since gos/web-socket-bundle 3.1: The "gos_web_socket.data_collector.websocket" service is deprecated and will be removed in GosWebSocketBundle 4.0. {
"exception": {}
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\EmailBundle\EventListener\MailboxAuthorizationListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\EmailBundle\\EventListener\\MailboxAuthorizationListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\FrontendBundle\EventListener\ValidateApiDocViewListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\ValidateApiDocViewListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\FrontendBundle\EventListener\DraftableFilterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\DraftableFilterListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\VisibilityBundle\EventListener\CategoryVisibleListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\VisibilityBundle\\EventListener\\CategoryVisibleListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\PlatformBundle\EventListener\Controller\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\PlatformBundle\\EventListener\\Controller\\ControllerListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\DistributionBundle\EventListener\ControllerTemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\DistributionBundle\\EventListener\\ControllerTemplateListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\SecurityBundle\EventListener\CsrfProtectionRequestListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\CsrfProtectionRequestListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\ProductBundle\EventListener\RestrictProductViewByInventoryStatusListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\ProductBundle\\EventListener\\RestrictProductViewByInventoryStatusListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller" to listener "Oro\Bundle\ProductBundle\EventListener\RestrictVariantProductViewListener::onKernelController". {
"event": "kernel.controller",
"listener": "Oro\\Bundle\\ProductBundle\\EventListener\\RestrictVariantProductViewListener::onKernelController"
}
|
| DEBUG 06:29:28 | security | Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::panelAction". (MAIN_REQUEST) |
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Oro\Bundle\ShoppingListBundle\EventListener\FrontendShoppingListTotalListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Oro\\Bundle\\ShoppingListBundle\\EventListener\\FrontendShoppingListTotalListener::onKernelController"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Oro\Bundle\SecurityBundle\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Oro\Bundle\SecurityBundle\EventListener\ControllerListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\ControllerListener::onKernelControllerArguments"
}
|
| DEBUG 06:29:28 | event |
Notified event "kernel.controller_arguments" to listener "Oro\Bundle\DraftBundle\EventListener\DraftKernelListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Oro\\Bundle\\DraftBundle\\EventListener\\DraftKernelListener::onKernelControllerArguments"
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 06:29:28 | security | Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::stylesheet". (SUB_REQUEST) |
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since nelmio/security-bundle 3.4.0: The "Nelmio\SecurityBundle\EventListener\XssProtectionListener" class is deprecated, use Content Security Policy without allowing "unsafe-inline" scripts instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 06:29:28 | security | Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::body". (SUB_REQUEST) |
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 06:29:28 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://dev.light2life.ru/sitemap.xml"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/oro/customer-portal/src/Oro/Bundle/FrontendBundle/Request/StorefrontSessionHttpKernelDecorator.php:53)
at Oro\Bundle\FrontendBundle\Request\StorefrontSessionHttpKernelDecorator->handle(object(Request), 1, true)
(vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Request/SessionHttpKernelDecorator.php:44)
at Oro\Bundle\SecurityBundle\Request\SessionHttpKernelDecorator->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:40)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:3)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/sitemap.xml".
at vendor/oro/commerce/src/Oro/Bundle/RedirectBundle/Routing/SlugUrlMatcher.php:168
at Oro\Bundle\RedirectBundle\Routing\SlugUrlMatcher->resolveAttributes(array('system' => object(Closure), 'maintenance' => object(Closure), 'slug' => object(Closure)), '/sitemap.xml')
(vendor/oro/commerce/src/Oro/Bundle/RedirectBundle/Routing/SlugUrlMatcher.php:99)
at Oro\Bundle\RedirectBundle\Routing\SlugUrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/oro/customer-portal/src/Oro/Bundle/FrontendBundle/Request/StorefrontSessionHttpKernelDecorator.php:53)
at Oro\Bundle\FrontendBundle\Request\StorefrontSessionHttpKernelDecorator->handle(object(Request), 1, true)
(vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Request/SessionHttpKernelDecorator.php:44)
at Oro\Bundle\SecurityBundle\Request\SessionHttpKernelDecorator->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:40)
at require_once('/app/vendor/autoload_runtime.php')
(public/index.php:3)
|