Error 500 Internal Server Error

GET https://dev.light2life.ru/_profiler/0ba6de?panel=cache&type=request

Forwarded to ErrorController (b1ebb0)

Exceptions

Failed opening required '/app/var/cache/dev/doctrine/orm/Proxies/__CG__OroBundleOrganizationBundleEntityOrganization.php' (include_path='.:/usr/local/lib/php')

Exception

Error

  1. require $fileName;
  2. break;
  3. case self::AUTOGENERATE_ALWAYS:
  4. $this->proxyGenerator->generateProxyClass($classMetadata, $fileName);
  5. require $fileName;
  6. break;
  7. case self::AUTOGENERATE_EVAL:
  8. $this->proxyGenerator->generateProxyClass($classMetadata, false);
  9. break;
  1. *
  2. * @throws OutOfBoundsException
  3. */
  4. public function getProxy($className, array $identifier)
  5. {
  6. $definition = $this->definitions[$className] ?? $this->getProxyDefinition($className);
  7. $fqcn = $definition->proxyClassName;
  8. $proxy = new $fqcn($definition->initializer, $definition->cloner);
  9. foreach ($definition->identifierFields as $idField) {
  10. if (! isset($identifier[$idField])) {
  1. */
  2. public function getProxy($className, array $identifier)
  3. {
  4. if (! $this->isLazyGhostObjectEnabled) {
  5. // @phpstan-ignore method.deprecatedClass
  6. return parent::getProxy($className, $identifier);
  7. }
  8. $proxyFactory = $this->proxyFactories[$className] ?? $this->getProxyFactory($className);
  9. return $proxyFactory($identifier);
in vendor/doctrine/orm/src/UnitOfWork.php -> getProxy (line 3119)
  1. $normalizedAssociatedId = $this->normalizeIdentifier($targetClass, $associatedId);
  2. switch (true) {
  3. // We are negating the condition here. Other cases will assume it is valid!
  4. case $hints['fetchMode'][$class->name][$field] !== ClassMetadata::FETCH_EAGER:
  5. $newValue = $this->em->getProxyFactory()->getProxy($assoc['targetEntity'], $normalizedAssociatedId);
  6. $this->registerManaged($newValue, $associatedId, []);
  7. break;
  8. // Deferred eager load only works for single identifier classes
  9. case isset($hints[self::HINT_DEFEREAGERLOAD]) &&
  1. if (isset($this->_hints[Query::HINT_REFRESH_ENTITY])) {
  2. $this->registerManaged($this->class, $this->_hints[Query::HINT_REFRESH_ENTITY], $data);
  3. }
  4. $uow = $this->_em->getUnitOfWork();
  5. $entity = $uow->createEntity($entityName, $data, $this->_hints);
  6. $result[] = $entity;
  7. if (isset($this->_hints[Query::HINT_INTERNAL_ITERATION]) && $this->_hints[Query::HINT_INTERNAL_ITERATION]) {
  8. $this->_uow->hydrationComplete();
  1. protected function hydrateAllData()
  2. {
  3. $result = [];
  4. while ($row = $this->statement()->fetchAssociative()) {
  5. $this->hydrateRowData($row, $result);
  6. }
  7. $this->_em->getUnitOfWork()->triggerEagerLoads();
  8. return $result;
  1. $this->_em->getEventManager()->addEventListener([Events::onClear], $this);
  2. $this->prepare();
  3. try {
  4. $result = $this->hydrateAllData();
  5. } finally {
  6. $this->cleanup();
  7. }
  8. return $result;
  1. {
  2. public function hydrateAll($stmt, $resultSetMapping, array $hints = [])
  3. {
  4. if ($logger = $this->_em->getConfiguration()->getAttribute('OrmProfilingLogger')) {
  5. $logger->startHydration('SimpleObjectHydrator');
  6. $result = parent::hydrateAll($stmt, $resultSetMapping, $hints);
  7. $logger->stopHydration(null === $result ? 0 : count($result), $resultSetMapping->getAliasMap());
  8. return $result;
  9. }
  10. return parent::hydrateAll($stmt, $resultSetMapping, $hints);
  11. }
  1. $hints[Query::HINT_REFRESH] = true;
  2. $hints[Query::HINT_REFRESH_ENTITY] = $entity;
  3. }
  4. $hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);
  5. $entities = $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, $hints);
  6. return $entities ? $entities[0] : null;
  7. }
  8. /**
  1. */
  2. public function findOneBy(array $criteria, ?array $orderBy = null)
  3. {
  4. $persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5. return $persister->load($criteria, null, null, [], null, 1, $orderBy);
  6. }
  7. /**
  8. * Counts entities by a set of criteria.
  9. *
  1. /**
  2. * @return Website
  3. */
  4. public function getDefaultWebsite()
  5. {
  6. return $this->findOneBy(['default' => true]);
  7. }
  8. /**
  9. * @return int[]
  10. */
  1. public function getDefaultWebsite(): ?Website
  2. {
  3. return $this->getEntityManager()
  4. ->getRepository(Website::class)
  5. ->getDefaultWebsite();
  6. }
  7. /**
  8. * Method should be called to reset internal memory cache of this manager.
  9. */
  10. public function onClear(): void
  1. $this->currentWebsite = null;
  2. }
  3. protected function findCurrentWebsite(): ?Website
  4. {
  5. return $this->getDefaultWebsite();
  6. }
  7. protected function getEntityManager(): EntityManagerInterface
  8. {
  9. return $this->doctrine->getManagerForClass(Website::class);
  1. if ($this->maintenance->isOn() && !$this->maintenanceRestrictionsChecker->isAllowed()) {
  2. return null;
  3. }
  4. $this->currentWebsite = $this->findCurrentWebsite();
  5. return $this->currentWebsite;
  6. }
  7. public function setCurrentWebsite(?Website $currentWebsite): void
  1. private function getWebsite(Request $request): ?Website
  2. {
  3. $website = $request->attributes->get(RequestWebsiteProvider::REQUEST_WEBSITE_ATTRIBUTE);
  4. if (!$website) {
  5. $website = $this->websiteManager->getCurrentWebsite();
  6. }
  7. return $website;
  8. }
  1. return;
  2. }
  3. $request = $event->getRequest();
  4. $website = $this->getWebsite($request);
  5. if (null === $website) {
  6. return;
  7. }
  8. $redirectUrl = $this->getRedirectUrl($request, $website);
  1. {
  2. if ($this->isOAuthRequest($event)) {
  3. return;
  4. }
  5. $this->innerRedirectListener->onRequest($event);
  6. }
  7. private function isOAuthRequest(RequestEvent $event): bool
  8. {
  9. if ($event->isMainRequest()) {
  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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 doctrine SELECT text_value FROM oro_config_value WHERE name = ? AND section = ?
[
    "is_installed",
    "oro_distribution"
]
DEBUG 04:59:42 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:59:42 doctrine SET application_name TO 'f24d15f5b1f4c9adcdc98ce89779b69c'
DEBUG 04:59:42 doctrine Executing statement: SET application_name TO 'f24d15f5b1f4c9adcdc98ce89779b69c'
{
    "sql": "SET application_name TO 'f24d15f5b1f4c9adcdc98ce89779b69c'"
}
DEBUG 04:59:42 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:59:42 doctrine SELECT o0_.theme AS theme_0 FROM oro_theme_configuration o0_ WHERE o0_.id = ?
[
    1
]
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "d4b292"
    },
    "request_uri": "https://dev.light2life.ru/_profiler/d4b292?panel=exception&type=request",
    "method": "GET"
}
DEBUG 04:59:42 security Checking for authenticator support.
{
    "firewall_name": "frontend",
    "authenticators": 3
}
DEBUG 04:59:42 security Checking support on authenticator.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:59:42 security Authenticator does not support the request.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:59:42 security Checking support on authenticator.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:59:42 security Authenticator does not support the request.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
DEBUG 04:59:42 security Checking support on authenticator.
{
    "firewall_name": "frontend",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
INFO 04:59:42 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 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 doctrine SELECT o0_.role AS role_0 FROM oro_customer_user_role o0_ WHERE o0_.id = ?
[
    3
]
DEBUG 04:59:42 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:59:42 app Populated the TokenStorage with an Anonymous Customer User Token.
INFO 04:59:42 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:59:42 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:59:42 security Authenticator successful!
{
    "token": {},
    "authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 security Authenticator set no success response: request continues.
{
    "authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 04:59:42 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:59:42 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 04:59:42 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 04:59:42 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:59:42 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:59:42 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\MimeTypeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\MimeTypeListener::onKernelRequest"
}
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 security Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::panelAction". (MAIN_REQUEST)
DEBUG 04:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 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:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 04:59:42 security Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::stylesheet". (SUB_REQUEST)
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 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:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead.
{
    "exception": {}
}
DEBUG 04:59:42 security Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::body". (SUB_REQUEST)
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}
INFO 04:59:42 php User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead.
{
    "exception": {}
}

Stack Trace

Error
Error:
Failed opening required '/app/var/cache/dev/doctrine/orm/Proxies/__CG__OroBundleOrganizationBundleEntityOrganization.php' (include_path='.:/usr/local/lib/php')

  at vendor/doctrine/common/src/Proxy/AbstractProxyFactory.php:212
  at Doctrine\Common\Proxy\AbstractProxyFactory->getProxyDefinition('Oro\\Bundle\\OrganizationBundle\\Entity\\Organization')
     (vendor/doctrine/common/src/Proxy/AbstractProxyFactory.php:111)
  at Doctrine\Common\Proxy\AbstractProxyFactory->getProxy('Oro\\Bundle\\OrganizationBundle\\Entity\\Organization', array('id' => 1))
     (vendor/doctrine/orm/src/Proxy/ProxyFactory.php:211)
  at Doctrine\ORM\Proxy\ProxyFactory->getProxy('Oro\\Bundle\\OrganizationBundle\\Entity\\Organization', array('id' => 1))
     (vendor/doctrine/orm/src/UnitOfWork.php:3119)
  at Doctrine\ORM\UnitOfWork->createEntity('Oro\\Bundle\\WebsiteBundle\\Entity\\Website', array('id' => 1, 'name' => 'Default', 'default' => true, 'createdAt' => object(DateTime), 'updatedAt' => object(DateTime), 'serialized_data' => null, 'business_unit_owner_id' => 1, 'organization_id' => 1, 'guest_role_id' => 3, 'default_role_id' => 2), array('fetchMode' => array('Oro\Bundle\WebsiteBundle\Entity\Website' => array('inversedWebsites' => 2, 'relatedWebsites' => 2, 'owner' => 2, 'organization' => 2))))
     (vendor/doctrine/orm/src/Internal/Hydration/SimpleObjectHydrator.php:181)
  at Doctrine\ORM\Internal\Hydration\SimpleObjectHydrator->hydrateRowData(array('id_1' => 1, 'name_2' => 'Default', 'is_default_3' => true, 'created_at_4' => '2026-09-18 06:45:07', 'updated_at_5' => '2026-09-18 06:45:07', 'serialized_data_6' => null, 'business_unit_owner_id_7' => 1, 'organization_id_8' => 1, 'guest_role_id_9' => 3, 'default_role_id_10' => 2), array())
     (vendor/doctrine/orm/src/Internal/Hydration/SimpleObjectHydrator.php:66)
  at Doctrine\ORM\Internal\Hydration\SimpleObjectHydrator->hydrateAllData()
     (vendor/doctrine/orm/src/Internal/Hydration/AbstractHydrator.php:276)
  at Doctrine\ORM\Internal\Hydration\AbstractHydrator->hydrateAll(object(Result), object(ResultSetMapping), array())
     (var/cache/dev/oro_entities/OroLoggingHydrator/LoggingSimpleObjectHydrator.php:10)
  at OroLoggingHydrator\LoggingSimpleObjectHydrator->hydrateAll(object(Result), object(ResultSetMapping), array())
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:787)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array('default' => true), null, null, array(), null, 1, null)
     (vendor/doctrine/orm/src/EntityRepository.php:240)
  at Doctrine\ORM\EntityRepository->findOneBy(array('default' => true))
     (vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Entity/Repository/WebsiteRepository.php:93)
  at Oro\Bundle\WebsiteBundle\Entity\Repository\WebsiteRepository->getDefaultWebsite()
     (vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Manager/WebsiteManager.php:63)
  at Oro\Bundle\WebsiteBundle\Manager\WebsiteManager->getDefaultWebsite()
     (vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Manager/WebsiteManager.php:75)
  at Oro\Bundle\WebsiteBundle\Manager\WebsiteManager->findCurrentWebsite()
     (vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Manager/WebsiteManager.php:49)
  at Oro\Bundle\WebsiteBundle\Manager\WebsiteManager->getCurrentWebsite()
     (vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/EventListener/RedirectListener.php:72)
  at Oro\Bundle\WebsiteBundle\EventListener\RedirectListener->getWebsite(object(Request))
     (vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/EventListener/RedirectListener.php:48)
  at Oro\Bundle\WebsiteBundle\EventListener\RedirectListener->onRequest(object(RequestEvent))
     (vendor/oro/oauth2-server/src/Oro/Bundle/OAuth2ServerBundle/EventListener/RedirectListener.php:29)
  at Oro\Bundle\OAuth2ServerBundle\EventListener\RedirectListener->onRequest(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)