Exceptions
Exceptions 3
InvalidArgumentException
}try {$callable = $this->createController($controller);} catch (\InvalidArgumentException $e) {throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);}if (!\is_callable($callable)) {throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$this->getControllerError($callable));}
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/public function getController(Request $request){$e = $this->stopwatch->start('controller.get_callable');$ret = $this->resolver->getController($request);$e->stop();return $ret;}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}// load controllerif (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}}}$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
InvalidArgumentException
if ($e instanceof \ArgumentCountError) {throw new \InvalidArgumentException(sprintf('Controller "%s" has required constructor arguments and does not exist in the container. Did you forget to define the controller as a service?', $class), 0, $e);}throw new \InvalidArgumentException(sprintf('Controller "%s" does neither exist as service nor as class.', $class), 0, $e);}private function throwExceptionIfControllerWasRemoved(string $controller, \Throwable $previous){if ($this->container instanceof Container && isset($this->container->getRemovedIds()[$controller])) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/*** {@inheritdoc}*/protected function instantiateController(string $class): object{$controller = parent::instantiateController($class);if ($controller instanceof ContainerAwareInterface) {$controller->setContainer($this->container);}if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 120)
}[$class, $method] = explode('::', $controller, 2);try {$controller = [$this->instantiateController($class), $method];} catch (\Error|\LogicException $e) {try {if ((new \ReflectionMethod($class, $method))->isStatic()) {return $class.'::'.$method;}
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
createController
(line 42)
if (1 === substr_count($controller, ':')) {$controller = str_replace(':', '::', $controller);trigger_deprecation('symfony/http-kernel', '5.1', 'Referencing controllers with a single colon is deprecated. Use "%s" instead.', $controller);}return parent::createController($controller);}/*** {@inheritdoc}*/
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 86)
if (\function_exists($controller)) {return $controller;}try {$callable = $this->createController($controller);} catch (\InvalidArgumentException $e) {throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);}if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/public function getController(Request $request){$e = $this->stopwatch->start('controller.get_callable');$ret = $this->resolver->getController($request);$e->stop();return $ret;}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}// load controllerif (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}}}$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Error
** @return object*/protected function instantiateController(string $class){return new $class();}private function getControllerError($callable): string{if (\is_string($callable)) {
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
instantiateController
(line 57)
if ($this->container->has($class)) {return $this->container->get($class);}try {return parent::instantiateController($class);} catch (\Error $e) {}$this->throwExceptionIfControllerWasRemoved($class, $e);
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/*** {@inheritdoc}*/protected function instantiateController(string $class): object{$controller = parent::instantiateController($class);if ($controller instanceof ContainerAwareInterface) {$controller->setContainer($this->container);}if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 120)
}[$class, $method] = explode('::', $controller, 2);try {$controller = [$this->instantiateController($class), $method];} catch (\Error|\LogicException $e) {try {if ((new \ReflectionMethod($class, $method))->isStatic()) {return $class.'::'.$method;}
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
createController
(line 42)
if (1 === substr_count($controller, ':')) {$controller = str_replace(':', '::', $controller);trigger_deprecation('symfony/http-kernel', '5.1', 'Referencing controllers with a single colon is deprecated. Use "%s" instead.', $controller);}return parent::createController($controller);}/*** {@inheritdoc}*/
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 86)
if (\function_exists($controller)) {return $controller;}try {$callable = $this->createController($controller);} catch (\InvalidArgumentException $e) {throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);}if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/public function getController(Request $request){$e = $this->stopwatch->start('controller.get_callable');$ret = $this->resolver->getController($request);$e->stop();return $ret;}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 146)
if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}// load controllerif (false === $controller = $this->resolver->getController($request)) {throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));}$event = new ControllerEvent($this, $controller, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
}}}$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Eccube\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Eccube\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::registerBundles()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Eccube\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "ArrayAccess::offsetExists()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "ArrayAccess::offsetSet()" might add "void" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "ArrayAccess::offsetGet()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "ArrayAccess::offsetUnset()" might add "void" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\AbstractEntity" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
Deprecated: Eccube\Entity\Customer implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Eccube\EccubeBundle" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Plugin\Api42\Bundle\ApiBundle" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToPHPValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::requiresSQLCommentHint()" might add "bool" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToPHPValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::requiresSQLCommentHint()" might add "bool" as a native return type declaration in the future. Do the same in child class "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Monolog\Formatter\FormatterInterface::format()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "EasyCorp\EasyLog\EasyLogFormatter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "base_template_class" option on Twig\Environment is deprecated since Twig 2.7.0. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setTotal()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setDeliveryFeeTotal()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setDiscount()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setCharge()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setTax()" method will require a new "$total|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setAddPoint()" method will require a new "$addPoint|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Eccube\Entity\Cart::setUsePoint()" method will require a new "$usePoint|int" argument in the next major version of its interface "Eccube\Entity\ItemHolderInterface", not defining it is deprecated. {
"exception": {}
}
|
| INFO 08:25:00 | php |
Deprecated: Eccube\Entity\Member implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Class "Eccube\Entity\Member" should implement method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier(): string": returns the identifier for this user (e.g. its username or email address). {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\Member" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUsername()" might add "string" as a native return type declaration in the future. Do the same in implementation "Eccube\Entity\Member" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::getSQLDeclaration()" might add "string" as a native return type declaration in the future. Do the same in child class "Plugin\TabaCustomFields2\Types\TextArrayType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Plugin\TabaCustomFields2\Types\TextArrayType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToPHPValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "Plugin\TabaCustomFields2\Types\TextArrayType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Doctrine\DBAL\Types\Type::getName()" might add "string" as a native return type declaration in the future. Do the same in child class "Plugin\TabaCustomFields2\Types\TextArrayType" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 08:25:00 | front | Client IP: 10.3.96.193 |
| DEBUG 08:25:00 | app | INIT |
| INFO 08:25:00 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "353fdc"
},
"request_uri": "http://yamaria-ec-demo.testman.biz/_profiler/353fdc?panel=exception",
"method": "GET"
}
|
| DEBUG 08:25:00 | app |
PROCESS START [
"_profiler"
]
|
| INFO 08:25:00 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"charset": "utf8",
"url": "<redacted>",
"host": "mysql6002.xserver.jp",
"port": null,
"user": "dober_ec1",
"password": "<redacted>",
"driverOptions": [],
"serverVersion": "57",
"defaultTableOptions": {
"charset": "utf8mb4",
"collation": "utf8mb4_bin"
},
"dbname": "dober_yamariaec42"
}
}
|
| DEBUG 08:25:00 | doctrine |
Executing query: SET SESSION time_zone = '+00:00' {
"sql": "SET SESSION time_zone = '+00:00'"
}
|
| DEBUG 08:25:00 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.company_name AS company_name_2, t0.company_kana AS company_kana_3, t0.postal_code AS postal_code_4, t0.addr01 AS addr01_5, t0.addr02 AS addr02_6, t0.phone_number AS phone_number_7, t0.business_hour AS business_hour_8, t0.email01 AS email01_9, t0.email02 AS email02_10, t0.email03 AS email03_11, t0.email04 AS email04_12, t0.shop_name AS shop_name_13, t0.shop_kana AS shop_kana_14, t0.shop_name_eng AS shop_name_eng_15, t0.update_date AS update_date_16, t0.good_traded AS good_traded_17, t0.message AS message_18, t0.delivery_free_amount AS delivery_free_amount_19, t0.delivery_free_quantity AS delivery_free_quantity_20, t0.option_mypage_order_status_display AS option_mypage_order_status_display_21, t0.option_nostock_hidden AS option_nostock_hidden_22, t0.option_favorite_product AS option_favorite_product_23, t0.option_product_delivery_fee AS option_product_delivery_fee_24, t0.invoice_registration_number AS invoice_registration_number_25, t0.option_product_tax_rule AS option_product_tax_rule_26, t0.option_customer_activate AS option_customer_activate_27, t0.option_remember_me AS option_remember_me_28, t0.authentication_key AS authentication_key_29, t0.php_path AS php_path_30, t0.option_point AS option_point_31, t0.basic_point_rate AS basic_point_rate_32, t0.point_conversion_rate AS point_conversion_rate_33, t0.country_id AS country_id_34, t0.pref_id AS pref_id_35, t0.discriminator_type FROM dtb_base_info t0 WHERE t0.id = ? AND t0.discriminator_type IN ('baseinfo') (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.company_name AS company_name_2, t0.company_kana AS company_kana_3, t0.postal_code AS postal_code_4, t0.addr01 AS addr01_5, t0.addr02 AS addr02_6, t0.phone_number AS phone_number_7, t0.business_hour AS business_hour_8, t0.email01 AS email01_9, t0.email02 AS email02_10, t0.email03 AS email03_11, t0.email04 AS email04_12, t0.shop_name AS shop_name_13, t0.shop_kana AS shop_kana_14, t0.shop_name_eng AS shop_name_eng_15, t0.update_date AS update_date_16, t0.good_traded AS good_traded_17, t0.message AS message_18, t0.delivery_free_amount AS delivery_free_amount_19, t0.delivery_free_quantity AS delivery_free_quantity_20, t0.option_mypage_order_status_display AS option_mypage_order_status_display_21, t0.option_nostock_hidden AS option_nostock_hidden_22, t0.option_favorite_product AS option_favorite_product_23, t0.option_product_delivery_fee AS option_product_delivery_fee_24, t0.invoice_registration_number AS invoice_registration_number_25, t0.option_product_tax_rule AS option_product_tax_rule_26, t0.option_customer_activate AS option_customer_activate_27, t0.option_remember_me AS option_remember_me_28, t0.authentication_key AS authentication_key_29, t0.php_path AS php_path_30, t0.option_point AS option_point_31, t0.basic_point_rate AS basic_point_rate_32, t0.point_conversion_rate AS point_conversion_rate_33, t0.country_id AS country_id_34, t0.pref_id AS pref_id_35, t0.discriminator_type FROM dtb_base_info t0 WHERE t0.id = ? AND t0.discriminator_type IN ('baseinfo')",
"params": {
"1": 1
},
"types": {
"1": 1
}
}
|
| DEBUG 08:25:00 | doctrine |
Executing statement: SELECT d0_.id AS id_0, d0_.page_name AS page_name_1, d0_.url AS url_2, d0_.file_name AS file_name_3, d0_.edit_type AS edit_type_4, d0_.author AS author_5, d0_.description AS description_6, d0_.keyword AS keyword_7, d0_.create_date AS create_date_8, d0_.update_date AS update_date_9, d0_.meta_robots AS meta_robots_10, d0_.meta_tags AS meta_tags_11, d1_.page_id AS page_id_12, d1_.layout_id AS layout_id_13, d1_.sort_no AS sort_no_14, d2_.id AS id_15, d2_.layout_name AS layout_name_16, d2_.create_date AS create_date_17, d2_.update_date AS update_date_18, d0_.discriminator_type AS discriminator_type_19, d0_.master_page_id AS master_page_id_20, d1_.discriminator_type AS discriminator_type_21, d1_.page_id AS page_id_22, d1_.layout_id AS layout_id_23, d2_.discriminator_type AS discriminator_type_24, d2_.device_type_id AS device_type_id_25 FROM dtb_page d0_ LEFT JOIN dtb_page_layout d1_ ON d0_.id = d1_.page_id AND d1_.discriminator_type IN ('pagelayout') LEFT JOIN dtb_layout d2_ ON d1_.layout_id = d2_.id AND d2_.discriminator_type IN ('layout') WHERE (d0_.url = ?) AND d0_.discriminator_type IN ('page') (parameters: {params}, types: {types}) {
"sql": "SELECT d0_.id AS id_0, d0_.page_name AS page_name_1, d0_.url AS url_2, d0_.file_name AS file_name_3, d0_.edit_type AS edit_type_4, d0_.author AS author_5, d0_.description AS description_6, d0_.keyword AS keyword_7, d0_.create_date AS create_date_8, d0_.update_date AS update_date_9, d0_.meta_robots AS meta_robots_10, d0_.meta_tags AS meta_tags_11, d1_.page_id AS page_id_12, d1_.layout_id AS layout_id_13, d1_.sort_no AS sort_no_14, d2_.id AS id_15, d2_.layout_name AS layout_name_16, d2_.create_date AS create_date_17, d2_.update_date AS update_date_18, d0_.discriminator_type AS discriminator_type_19, d0_.master_page_id AS master_page_id_20, d1_.discriminator_type AS discriminator_type_21, d1_.page_id AS page_id_22, d1_.layout_id AS layout_id_23, d2_.discriminator_type AS discriminator_type_24, d2_.device_type_id AS device_type_id_25 FROM dtb_page d0_ LEFT JOIN dtb_page_layout d1_ ON d0_.id = d1_.page_id AND d1_.discriminator_type IN ('pagelayout') LEFT JOIN dtb_layout d2_ ON d1_.layout_id = d2_.id AND d2_.discriminator_type IN ('layout') WHERE (d0_.url = ?) AND d0_.discriminator_type IN ('page')",
"params": {
"1": "_profiler"
},
"types": {
"1": 2
}
}
|
| INFO 08:25:00 | front | fallback to PC layout |
| DEBUG 08:25:00 | doctrine |
Executing statement: SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED {
"sql": "SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED"
}
|
| DEBUG 08:25:00 | doctrine | Beginning transaction |
| DEBUG 08:25:00 | front | Begin Transaction. |
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaCustomFields2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaCustomFields2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaFileManager2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaFileManager2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaHtmlEditor2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaHtmlEditor2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | app |
LOGIC START [
"_profiler"
]
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.encoder_factory.generic" service is deprecated, use "security.password_hasher_factory" instead. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" class is deprecated, use "Symfony\Component\PasswordHasher\PasswordHasherInterface" instead. {
"exception": {}
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaCustomFields2\TabaCustomFieldsEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaCustomFields2\\TabaCustomFieldsEvent::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaFileManager2\TabaFileManagerEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaFileManager2\\TabaFileManagerEvent::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaHtmlEditor2\TabaHtmlEditorEvent::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaHtmlEditor2\\TabaHtmlEditorEvent::onKernelControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Customize\EventSubscriber\ProductHistoryEventSubscriber::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Customize\\EventSubscriber\\ProductHistoryEventSubscriber::onKernelControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 08:25:00 | php |
User Deprecated: The "Twig\Template" class is considered internal. It may change without further notice. You should not use it from "Eccube\Twig\Template". {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Twig\Template::getTemplateName()" might add "string" as a native return type declaration in the future. Do the same in child class "Eccube\Twig\Template" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Twig\Template::getDebugInfo()" might add "array" as a native return type declaration in the future. Do the same in child class "Eccube\Twig\Template" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 08:25:00 | php |
User Deprecated: Method "Twig\Template::getSourceContext()" might add "Source" as a native return type declaration in the future. Do the same in child class "Eccube\Twig\Template" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaCustomFields2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaCustomFields2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaFileManager2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaFileManager2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaHtmlEditor2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaHtmlEditor2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaCustomFields2\TabaCustomFieldsEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaCustomFields2\\TabaCustomFieldsEvent::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaFileManager2\TabaFileManagerEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaFileManager2\\TabaFileManagerEvent::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaHtmlEditor2\TabaHtmlEditorEvent::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaHtmlEditor2\\TabaHtmlEditorEvent::onKernelControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Customize\EventSubscriber\ProductHistoryEventSubscriber::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Customize\\EventSubscriber\\ProductHistoryEventSubscriber::onKernelControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 08:25:00 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\LogListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\LogListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\MaintenanceListener::onResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\MaintenanceListener::onResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Customize\EventSubscriber\ProductHistoryEventSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Customize\\EventSubscriber\\ProductHistoryEventSubscriber::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Plugin\TabaFileManager2\EventListener\CacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Plugin\\TabaFileManager2\\EventListener\\CacheListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.response" to listener "Plugin\TabaHtmlEditor2\EventListener\CacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Plugin\\TabaHtmlEditor2\\EventListener\\CacheListener::onKernelResponse"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaCustomFields2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaCustomFields2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaFileManager2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaFileManager2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Plugin\TabaHtmlEditor2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaHtmlEditor2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:25:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaCustomFields2\TabaCustomFieldsEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaCustomFields2\\TabaCustomFieldsEvent::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaFileManager2\TabaFileManagerEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaFileManager2\\TabaFileManagerEvent::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaHtmlEditor2\TabaHtmlEditorEvent::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaHtmlEditor2\\TabaHtmlEditorEvent::onKernelControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Customize\EventSubscriber\ProductHistoryEventSubscriber::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Customize\\EventSubscriber\\ProductHistoryEventSubscriber::onKernelControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 08:25:01 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\LogListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\LogListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Eccube\EventListener\MaintenanceListener::onResponse". {
"event": "kernel.response",
"listener": "Eccube\\EventListener\\MaintenanceListener::onResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Customize\EventSubscriber\ProductHistoryEventSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Customize\\EventSubscriber\\ProductHistoryEventSubscriber::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Plugin\TabaFileManager2\EventListener\CacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Plugin\\TabaFileManager2\\EventListener\\CacheListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.response" to listener "Plugin\TabaHtmlEditor2\EventListener\CacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Plugin\\TabaHtmlEditor2\\EventListener\\CacheListener::onKernelResponse"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Plugin\TabaCustomFields2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaCustomFields2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Plugin\TabaFileManager2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaFileManager2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Plugin\TabaHtmlEditor2\EventListener\InitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Plugin\\TabaHtmlEditor2\\EventListener\\InitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\RestrictFileUploadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\RestrictFileUploadListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Eccube\EventListener\RateLimiterListener::onController". {
"event": "kernel.controller",
"listener": "Eccube\\EventListener\\RateLimiterListener::onController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaCustomFields2\TabaCustomFieldsEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaCustomFields2\\TabaCustomFieldsEvent::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaFileManager2\TabaFileManagerEvent::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaFileManager2\\TabaFileManagerEvent::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Plugin\TabaHtmlEditor2\TabaHtmlEditorEvent::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Plugin\\TabaHtmlEditor2\\TabaHtmlEditorEvent::onKernelControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Customize\EventSubscriber\ProductHistoryEventSubscriber::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Customize\\EventSubscriber\\ProductHistoryEventSubscriber::onKernelControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:25:01 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
Stack Traces 3
|
[3/3]
InvalidArgumentException
|
|---|
InvalidArgumentException:
The controller for URI "/api/update" is not callable: Controller "app/Customize/Controller/UpdateCustomerController" does neither exist as service nor as class.
at vendor/symfony/http-kernel/Controller/ControllerResolver.php:88
at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38)
at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:146)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(index.php/:84)
|
|
[2/3]
InvalidArgumentException
|
|---|
InvalidArgumentException:
Controller "app/Customize/Controller/UpdateCustomerController" does neither exist as service nor as class.
at vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:67
at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('app/Customize/Controller/UpdateCustomerController')
(vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29)
at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('app/Customize/Controller/UpdateCustomerController')
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:120)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('app/Customize/Controller/UpdateCustomerController::getAction')
(vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:42)
at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->createController('app/Customize/Controller/UpdateCustomerController::getAction')
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:86)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38)
at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:146)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(index.php/:84)
|
|
[1/3]
Error
|
|---|
Error:
Class "app/Customize/Controller/UpdateCustomerController" not found
at vendor/symfony/http-kernel/Controller/ControllerResolver.php:147
at Symfony\Component\HttpKernel\Controller\ControllerResolver->instantiateController('app/Customize/Controller/UpdateCustomerController')
(vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:57)
at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('app/Customize/Controller/UpdateCustomerController')
(vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29)
at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('app/Customize/Controller/UpdateCustomerController')
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:120)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('app/Customize/Controller/UpdateCustomerController::getAction')
(vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:42)
at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->createController('app/Customize/Controller/UpdateCustomerController::getAction')
(vendor/symfony/http-kernel/Controller/ControllerResolver.php:86)
at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38)
at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request))
(vendor/symfony/http-kernel/HttpKernel.php:146)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(index.php/:84)
|