Exceptions
Exception
Error
require $fileName;break;case self::AUTOGENERATE_ALWAYS:$this->proxyGenerator->generateProxyClass($classMetadata, $fileName);require $fileName;break;case self::AUTOGENERATE_EVAL:$this->proxyGenerator->generateProxyClass($classMetadata, false);break;
in
vendor/doctrine/common/src/Proxy/AbstractProxyFactory.php
->
getProxyDefinition
(line 111)
** @throws OutOfBoundsException*/public function getProxy($className, array $identifier){$definition = $this->definitions[$className] ?? $this->getProxyDefinition($className);$fqcn = $definition->proxyClassName;$proxy = new $fqcn($definition->initializer, $definition->cloner);foreach ($definition->identifierFields as $idField) {if (! isset($identifier[$idField])) {
in
vendor/doctrine/orm/src/Proxy/ProxyFactory.php
->
getProxy
(line 211)
*/public function getProxy($className, array $identifier){if (! $this->isLazyGhostObjectEnabled) {// @phpstan-ignore method.deprecatedClassreturn parent::getProxy($className, $identifier);}$proxyFactory = $this->proxyFactories[$className] ?? $this->getProxyFactory($className);return $proxyFactory($identifier);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
getProxy
(line 3119)
$normalizedAssociatedId = $this->normalizeIdentifier($targetClass, $associatedId);switch (true) {// We are negating the condition here. Other cases will assume it is valid!case $hints['fetchMode'][$class->name][$field] !== ClassMetadata::FETCH_EAGER:$newValue = $this->em->getProxyFactory()->getProxy($assoc['targetEntity'], $normalizedAssociatedId);$this->registerManaged($newValue, $associatedId, []);break;// Deferred eager load only works for single identifier classescase isset($hints[self::HINT_DEFEREAGERLOAD]) &&
in
vendor/doctrine/orm/src/Internal/Hydration/SimpleObjectHydrator.php
->
createEntity
(line 181)
if (isset($this->_hints[Query::HINT_REFRESH_ENTITY])) {$this->registerManaged($this->class, $this->_hints[Query::HINT_REFRESH_ENTITY], $data);}$uow = $this->_em->getUnitOfWork();$entity = $uow->createEntity($entityName, $data, $this->_hints);$result[] = $entity;if (isset($this->_hints[Query::HINT_INTERNAL_ITERATION]) && $this->_hints[Query::HINT_INTERNAL_ITERATION]) {$this->_uow->hydrationComplete();
in
vendor/doctrine/orm/src/Internal/Hydration/SimpleObjectHydrator.php
->
hydrateRowData
(line 66)
protected function hydrateAllData(){$result = [];while ($row = $this->statement()->fetchAssociative()) {$this->hydrateRowData($row, $result);}$this->_em->getUnitOfWork()->triggerEagerLoads();return $result;
in
vendor/doctrine/orm/src/Internal/Hydration/AbstractHydrator.php
->
hydrateAllData
(line 276)
$this->_em->getEventManager()->addEventListener([Events::onClear], $this);$this->prepare();try {$result = $this->hydrateAllData();} finally {$this->cleanup();}return $result;
in
var/cache/dev/oro_entities/OroLoggingHydrator/LoggingSimpleObjectHydrator.php
->
hydrateAll
(line 10)
{public function hydrateAll($stmt, $resultSetMapping, array $hints = []){if ($logger = $this->_em->getConfiguration()->getAttribute('OrmProfilingLogger')) {$logger->startHydration('SimpleObjectHydrator');$result = parent::hydrateAll($stmt, $resultSetMapping, $hints);$logger->stopHydration(null === $result ? 0 : count($result), $resultSetMapping->getAliasMap());return $result;}return parent::hydrateAll($stmt, $resultSetMapping, $hints);}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
hydrateAll
(line 787)
$hints[Query::HINT_REFRESH] = true;$hints[Query::HINT_REFRESH_ENTITY] = $entity;}$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);$entities = $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, $hints);return $entities ? $entities[0] : null;}/**
in
vendor/doctrine/orm/src/EntityRepository.php
->
load
(line 240)
*/public function findOneBy(array $criteria, ?array $orderBy = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->load($criteria, null, null, [], null, 1, $orderBy);}/*** Counts entities by a set of criteria.*
in
vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Entity/Repository/WebsiteRepository.php
->
findOneBy
(line 93)
/*** @return Website*/public function getDefaultWebsite(){return $this->findOneBy(['default' => true]);}/*** @return int[]*/
in
vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Manager/WebsiteManager.php
->
getDefaultWebsite
(line 63)
public function getDefaultWebsite(): ?Website{return $this->getEntityManager()->getRepository(Website::class)->getDefaultWebsite();}/*** Method should be called to reset internal memory cache of this manager.*/public function onClear(): void
in
vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Manager/WebsiteManager.php
->
getDefaultWebsite
(line 75)
$this->currentWebsite = null;}protected function findCurrentWebsite(): ?Website{return $this->getDefaultWebsite();}protected function getEntityManager(): EntityManagerInterface{return $this->doctrine->getManagerForClass(Website::class);
in
vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/Manager/WebsiteManager.php
->
findCurrentWebsite
(line 49)
if ($this->maintenance->isOn() && !$this->maintenanceRestrictionsChecker->isAllowed()) {return null;}$this->currentWebsite = $this->findCurrentWebsite();return $this->currentWebsite;}public function setCurrentWebsite(?Website $currentWebsite): void
in
vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/EventListener/RedirectListener.php
->
getCurrentWebsite
(line 72)
private function getWebsite(Request $request): ?Website{$website = $request->attributes->get(RequestWebsiteProvider::REQUEST_WEBSITE_ATTRIBUTE);if (!$website) {$website = $this->websiteManager->getCurrentWebsite();}return $website;}
in
vendor/oro/customer-portal/src/Oro/Bundle/WebsiteBundle/EventListener/RedirectListener.php
->
getWebsite
(line 48)
return;}$request = $event->getRequest();$website = $this->getWebsite($request);if (null === $website) {return;}$redirectUrl = $this->getRedirectUrl($request, $website);
in
vendor/oro/oauth2-server/src/Oro/Bundle/OAuth2ServerBundle/EventListener/RedirectListener.php
->
onRequest
(line 29)
{if ($this->isOAuthRequest($event)) {return;}$this->innerRedirectListener->onRequest($event);}private function isOAuthRequest(RequestEvent $event): bool{if ($event->isMainRequest()) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 129)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/oro/customer-portal/src/Oro/Bundle/FrontendBundle/Request/StorefrontSessionHttpKernelDecorator.php
->
handle
(line 53)
$this->sessionStorageOptionsManipulator->setSessionOptions(array_replace($this->originalSessionOptions, $this->currentSessionOptions));}return $this->innerKernel->handle($request, $type, $catch);}#[\Override]public function terminate(Request $request, Response $response): void{
in
vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Request/SessionHttpKernelDecorator.php
->
handle
(line 44)
}}$this->sessionStorageOptionsManipulator->setSessionOptions($this->currentSessionOptions);return $this->innerKernel->handle($request, $type, $catch);}#[\Override]public function terminate(Request $request, Response $response): void{
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 34)
) {}public function run(): int{$response = $this->kernel->handle($this->request);$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {fastcgi_finish_request();
in
vendor/autoload_runtime.php
->
run
(line 40)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phprequire_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new AppKernel($context['ORO_ENV'], (bool) $context['ORO_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | doctrine |
SELECT text_value FROM oro_config_value WHERE name = ? AND section = ? [
"is_installed",
"oro_distribution"
]
|
| DEBUG 04:54:03 | 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:03 | doctrine | SET application_name TO 'e184bd38be0207bf71d535985845d1a0' |
| DEBUG 04:54:03 | doctrine |
Executing statement: SET application_name TO 'e184bd38be0207bf71d535985845d1a0' {
"sql": "SET application_name TO 'e184bd38be0207bf71d535985845d1a0'"
}
|
| DEBUG 04:54:03 | 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:03 | doctrine |
SELECT o0_.theme AS theme_0 FROM oro_theme_configuration o0_ WHERE o0_.id = ? [
1
]
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "9ec719"
},
"request_uri": "https://dev.light2life.ru/_profiler/9ec719",
"method": "GET"
}
|
| DEBUG 04:54:03 | security |
Checking for authenticator support. {
"firewall_name": "frontend",
"authenticators": 3
}
|
| DEBUG 04:54:03 | security |
Checking support on authenticator. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 04:54:03 | security |
Authenticator does not support the request. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 04:54:03 | security |
Checking support on authenticator. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 04:54:03 | security |
Authenticator does not support the request. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 04:54:03 | security |
Checking support on authenticator. {
"firewall_name": "frontend",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | doctrine |
SELECT o0_.role AS role_0 FROM oro_customer_user_role o0_ WHERE o0_.id = ? [
3
]
|
| DEBUG 04:54:03 | 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:03 | app | Populated the TokenStorage with an Anonymous Customer User Token. |
| INFO 04:54:03 | 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:03 | 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:03 | security |
Authenticator successful! {
"token": {},
"authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | security |
Authenticator set no success response: request continues. {
"authenticator": "Oro\\Bundle\\CustomerBundle\\Security\\AnonymousCustomerUserAuthenticator"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". {
"event": "kernel.request",
"listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
|
| DEBUG 04:54:03 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". {
"event": "kernel.request",
"listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | event |
Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\MimeTypeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\MimeTypeListener::onKernelRequest"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | security | Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::panelAction". (MAIN_REQUEST) |
| DEBUG 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | security | Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::stylesheet". (SUB_REQUEST) |
| INFO 04:54:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | 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:03 | security | Invoked controller "Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::body". (SUB_REQUEST) |
| INFO 04:54:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Calling "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | php |
User Deprecated: Since symfony/http-kernel 7.4: Implementing "Http\HttplugBundle\Collector\Collector::__wakeup()" is deprecated, use "__unserialize()" instead. {
"exception": {}
}
|
| INFO 04:54:03 | 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)
|