Redirect 302 redirect from GET @n/a (9fbbc6)

Error 404 Not Found

GET https://dev.light2life.ru/sitemap.xml

Forwarded to ErrorController (e98aab)

Exceptions

No route found for "GET https://dev.light2life.ru/sitemap.xml" (from "http://dev.light2life.ru/sitemap.xml")

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#6319
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->sessionStorageOptionsManipulator->setSessionOptions(
  2. array_replace($this->originalSessionOptions, $this->currentSessionOptions)
  3. );
  4. }
  5. return $this->innerKernel->handle($request, $type, $catch);
  6. }
  7. #[\Override]
  8. public function terminate(Request $request, Response $response): void
  9. {
  1. }
  2. }
  3. $this->sessionStorageOptionsManipulator->setSessionOptions($this->currentSessionOptions);
  4. return $this->innerKernel->handle($request, $type, $catch);
  5. }
  6. #[\Override]
  7. public function terminate(Request $request, Response $response): void
  8. {
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 40)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 3)
  1. <?php
  2. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  3. return function (array $context) {
  4. return new AppKernel($context['ORO_ENV'], (bool) $context['ORO_DEBUG']);
  5. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/sitemap.xml".

  1. if ($attributes) {
  2. return $attributes;
  3. }
  4. }
  5. throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. /**
  8. * Get URL attributes with context URL attributes.
  9. *
  1. },
  2. self::MATCH_MAINTENANCE => $this->getMaintenanceMatcher($pathinfo),
  3. self::MATCH_SLUG => $this->getSlugMatcher($pathinfo)
  4. ];
  5. return $this->resolveAttributes($matchers, $pathinfo);
  6. }
  7. #[\Override]
  8. public function match(string $pathinfo): array
  9. {
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->sessionStorageOptionsManipulator->setSessionOptions(
  2. array_replace($this->originalSessionOptions, $this->currentSessionOptions)
  3. );
  4. }
  5. return $this->innerKernel->handle($request, $type, $catch);
  6. }
  7. #[\Override]
  8. public function terminate(Request $request, Response $response): void
  9. {
  1. }
  2. }
  3. $this->sessionStorageOptionsManipulator->setSessionOptions($this->currentSessionOptions);
  4. return $this->innerKernel->handle($request, $type, $catch);
  5. }
  6. #[\Override]
  7. public function terminate(Request $request, Response $response): void
  8. {
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 40)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 3)
  1. <?php
  2. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  3. return function (array $context) {
  4. return new AppKernel($context['ORO_ENV'], (bool) $context['ORO_DEBUG']);
  5. };

Logs

Level Channel Message
INFO 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 doctrine SELECT text_value FROM oro_config_value WHERE name = ? AND section = ?
[
    "is_installed",
    "oro_distribution"
]
DEBUG 04:54:01 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 04:54:01 doctrine SET application_name TO 'c073f1e6b3eb4276fc6d8169c28765e0'
DEBUG 04:54:01 doctrine Executing statement: SET application_name TO 'c073f1e6b3eb4276fc6d8169c28765e0'
{
    "sql": "SET application_name TO 'c073f1e6b3eb4276fc6d8169c28765e0'"
}
DEBUG 04:54:01 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 04:54:01 doctrine SELECT o0_.theme AS theme_0 FROM oro_theme_configuration o0_ WHERE o0_.id = ?
[
    1
]
DEBUG 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "18d7bc"
    },
    "request_uri": "https://dev.light2life.ru/_profiler/18d7bc",
    "method": "GET"
}
DEBUG 04:54:01 security Checking for authenticator support.
{
    "firewall_name": "frontend",
    "authenticators": 3
}
DEBUG 04:54:01 security Checking support on authenticator.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:54:01 security Authenticator does not support the request.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:54:01 security Checking support on authenticator.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:54:01 security Authenticator does not support the request.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:54:01 security Checking support on authenticator.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:54:01 doctrine SELECT t0.id AS id_1, t0.last_visit AS last_visit_2, t0.session_id AS session_id_3, t0.serialized_data AS serialized_data_4, t0.cookies_accepted AS cookies_accepted_5, t0.customer_user_id AS customer_user_id_6 FROM oro_customer_visitor t0 WHERE t0.session_id = ? LIMIT 1
[
    "486dc0c1725d15e6a96e"
]
DEBUG 04:54:01 doctrine Executing statement: SELECT t0.id AS id_1, t0.last_visit AS last_visit_2, t0.session_id AS session_id_3, t0.serialized_data AS serialized_data_4, t0.cookies_accepted AS cookies_accepted_5, t0.customer_user_id AS customer_user_id_6 FROM oro_customer_visitor t0 WHERE t0.session_id = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.last_visit AS last_visit_2, t0.session_id AS session_id_3, t0.serialized_data AS serialized_data_4, t0.cookies_accepted AS cookies_accepted_5, t0.customer_user_id AS customer_user_id_6 FROM oro_customer_visitor t0 WHERE t0.session_id = ? LIMIT 1",
    "params": {
        "1": "486dc0c1725d15e6a96e"
    },
    "types": {
        "1": 2
    }
}
DEBUG 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 doctrine SELECT o0_.role AS role_0 FROM oro_customer_user_role o0_ WHERE o0_.id = ?
[
    3
]
DEBUG 04:54:01 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 04:54:01 app Populated the TokenStorage with an Anonymous Customer User Token.
INFO 04:54:01 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 04:54:01 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 04:54:01 security Authenticator successful!
{
    "token": {},
    "authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
DEBUG 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 security Authenticator set no success response: request continues.
{
    "authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
DEBUG 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 04:54:01 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 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\MaintenanceBundle\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\MaintenanceBundle\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\ApiBundle\EventListener\JsonApiFormatOverrideListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\ApiBundle\\EventListener\\JsonApiFormatOverrideListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\FrontendBundle\EventListener\DraftableFilterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\DraftableFilterListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\MimeTypeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\MimeTypeListener::onKernelRequest"
}
DEBUG 04:54:01 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 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\InstallerBundle\EventListener\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\InstallerBundle\\EventListener\\RequestListener::onRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\RedirectBundle\Security\Firewall::onKernelRequestBeforeRouting".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\RedirectBundle\\Security\\Firewall::onKernelRequestBeforeRouting"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\OAuth2ServerBundle\EventListener\RedirectListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\OAuth2ServerBundle\\EventListener\\RedirectListener::onRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\ApiBundle\EventListener\ErrorHandlingBodyListenerDecorator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\ApiBundle\\EventListener\\ErrorHandlingBodyListenerDecorator::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\RedirectBundle\Security\Firewall::onKernelRequestAfterRouting".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\RedirectBundle\\Security\\Firewall::onKernelRequestAfterRouting"
}
DEBUG 04:54:01 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 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\LocaleBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\LocaleBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\FrontendBundle\EventListener\GuestAccessRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\GuestAccessRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\OAuth2ServerBundle\EventListener\OldApiAccessRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\OAuth2ServerBundle\\EventListener\\OldApiAccessRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\UIBundle\EventListener\ContentProviderListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\UIBundle\\EventListener\\ContentProviderListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\EmailBundle\EventListener\NotificationAlertsListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\EmailBundle\\EventListener\\NotificationAlertsListener::onRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\UserBundle\Security\DisabledLoginSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\UserBundle\\Security\\DisabledLoginSubscriber::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\SoapBundle\EventListener\ApiSubRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\SoapBundle\\EventListener\\ApiSubRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\FrontendBundle\EventListener\ThemeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\ThemeListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\WebsiteBundle\EventListener\AssetsRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\WebsiteBundle\\EventListener\\AssetsRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\FeatureToggleBundle\EventListener\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\FeatureToggleBundle\\EventListener\\RequestListener::onRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\NavigationBundle\Event\AddMasterRequestRouteListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\NavigationBundle\\Event\\AddMasterRequestRouteListener::onKernelRequest"
}
DEBUG 04:54:01 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 04:54:01 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 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\CustomerBundle\Doctrine\DoctrineFiltersListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\CustomerBundle\\Doctrine\\DoctrineFiltersListener::onRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Component\DraftSession\EventListener\BeginDraftSessionOnRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Component\\DraftSession\\EventListener\\BeginDraftSessionOnRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Component\DraftSession\EventListener\SetDraftSessionUuidToRequestContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Component\\DraftSession\\EventListener\\SetDraftSessionUuidToRequestContextListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Component\DraftSession\EventListener\EnableEntityDraftsOnRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Component\\DraftSession\\EventListener\\EnableEntityDraftsOnRequestListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\SoapBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\SoapBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\LayoutBundle\EventListener\ThemeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\LayoutBundle\\EventListener\\ThemeListener::onKernelRequest"
}
DEBUG 04:54:01 event Notified event "kernel.request" to listener "Oro\Bundle\MessageQueueBundle\Client\RequestWatcher::onRequestStart".
{
    "event": "kernel.request",
    "listener": "Oro\\Bundle\\MessageQueueBundle\\Client\\RequestWatcher::onRequestStart"
}
INFO 04:54:01 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 04:54:01 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\EmailBundle\EventListener\MailboxAuthorizationListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\EmailBundle\\EventListener\\MailboxAuthorizationListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\FrontendBundle\EventListener\ValidateApiDocViewListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\ValidateApiDocViewListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\FrontendBundle\EventListener\DraftableFilterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\FrontendBundle\\EventListener\\DraftableFilterListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\VisibilityBundle\EventListener\CategoryVisibleListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\VisibilityBundle\\EventListener\\CategoryVisibleListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 04:54:01 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 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\DistributionBundle\EventListener\ControllerTemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\DistributionBundle\\EventListener\\ControllerTemplateListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\SecurityBundle\EventListener\CsrfProtectionRequestListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\SecurityBundle\\EventListener\\CsrfProtectionRequestListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\ProductBundle\EventListener\RestrictProductViewByInventoryStatusListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\ProductBundle\\EventListener\\RestrictProductViewByInventoryStatusListener::onKernelController"
}
DEBUG 04:54:01 event Notified event "kernel.controller" to listener "Oro\Bundle\ProductBundle\EventListener\RestrictVariantProductViewListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Oro\\Bundle\\ProductBundle\\EventListener\\RestrictVariantProductViewListener::onKernelController"
}
DEBUG 04:54:01 security Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::panelAction". (MAIN_REQUEST)
DEBUG 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 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 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 04:54:01 security Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::stylesheet". (SUB_REQUEST)
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 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 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 04:54:01 security Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::body". (SUB_REQUEST)
INFO 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:54:01 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" (from "http://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)