Symfony Exception

Error

HTTP 500 Internal Server Error

Call to a member function getPath() on null

Exception

Error

  1.                 $arrBreadcrumb[0]['url'] = 'product_list';
  2.                 $arrBreadcrumb[0]['q'] = '';
  3.                 $key 1;
  4.                 foreach($Category->getPath() as $cat) {
  5.                     if ((count($Category->getPath())) == $key) {
  6.                         $PageLayout->setName($cat->getName());
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.             $subRequest->attributes->add($reference->attributes);
  2.         }
  3.         $level ob_get_level();
  4.         try {
  5.             return SubRequestHandler::handle($this->kernel$subRequestHttpKernelInterface::SUB_REQUESTfalse);
  6.         } catch (\Exception $e) {
  7.             // we dispatch the exception event to trigger the logging
  8.             // the response that comes back is ignored
  9.             if (isset($options['ignore_errors']) && $options['ignore_errors'] && $this->dispatcher) {
  10.                 $event = new ExceptionEvent($this->kernel$requestHttpKernelInterface::SUB_REQUEST$e);
  1.         if (!$request $this->requestStack->getCurrentRequest()) {
  2.             throw new \LogicException('Rendering a fragment can only be done when handling a Request.');
  3.         }
  4.         return $this->deliver($this->renderers[$renderer]->render($uri$request$options));
  5.     }
  6.     /**
  7.      * Delivers the Response as a string.
  8.      *
  1.         if (!isset($this->initialized[$renderer]) && $this->container->has($renderer)) {
  2.             $this->addRenderer($this->container->get($renderer));
  3.             $this->initialized[$renderer] = true;
  4.         }
  5.         return parent::render($uri$renderer$options);
  6.     }
  7. }
  1.     public function renderFragment($uri$options = [])
  2.     {
  3.         $strategy $options['strategy'] ?? 'inline';
  4.         unset($options['strategy']);
  5.         return $this->handler->render($uri$strategy$options);
  6.     }
  7.     /**
  8.      * Renders a fragment.
  9.      *
  1.     ";
  2.             // line 13
  3.             if (twig_get_attribute($this->env$this->source$context["Block"], "use_controller", [], "any"falsefalsefalse13)) {
  4.                 // line 14
  5.                 echo "        ";
  6.                 echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath(("block_" twig_get_attribute($this->env$this->source$context["Block"], "file_name", [], "any"falsefalsefalse14))));
  7.                 echo "
  8.     ";
  9.             } else {
  10.                 // line 16
  11.                 echo "        ";
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))), array()) in src/Eccube/Twig/Template.php (line 40)
  1.             $eventDispatcher->dispatch($this->getTemplateName(), $event);
  2.             if ($event->getSource() !== $originCode) {
  3.                 $newTemplate $this->env->createTemplate($event->getSource());
  4.                 $newTemplate->display($event->getParameters(), $blocks);
  5.             } else {
  6.                 parent::display($event->getParameters(), $blocks);
  7.             }
  8.         } else {
  9.             parent::display($context$blocks);
  10.         }
  11.     }
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.             if (!$ignoreMissing) {
  2.                 throw $e;
  3.             }
  4.         }
  5.         return $loaded $loaded->render($variables) : '';
  6.     } finally {
  7.         if ($isSandboxed && !$alreadySandboxed) {
  8.             $sandbox->disableSandbox();
  9.         }
  10.     }
  1.         if (twig_get_attribute($this->env$this->source, (isset($context["Layout"]) || array_key_exists("Layout"$context) ? $context["Layout"] : (function () { throw new RuntimeError('Variable "Layout" does not exist.'96$this->source); })()), "MainTop", [], "any"falsefalsefalse96)) {
  2.             // line 97
  3.             echo "                <div class=\"ec-layoutRole__mainTop\">
  4.                     ";
  5.             // line 98
  6.             echo twig_include($this->env$context"block.twig", ["Blocks" => twig_get_attribute($this->env$this->source, (isset($context["Layout"]) || array_key_exists("Layout"$context) ? $context["Layout"] : (function () { throw new RuntimeError('Variable "Layout" does not exist.'98$this->source); })()), "MainTop", [], "any"falsefalsefalse98)]);
  7.             echo "
  8.                 </div>
  9.             ";
  10.         }
  11.         // line 101
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page'), array('javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main'))) in src/Eccube/Twig/Template.php (line 40)
  1.             $eventDispatcher->dispatch($this->getTemplateName(), $event);
  2.             if ($event->getSource() !== $originCode) {
  3.                 $newTemplate $this->env->createTemplate($event->getSource());
  4.                 $newTemplate->display($event->getParameters(), $blocks);
  5.             } else {
  6.                 parent::display($event->getParameters(), $blocks);
  7.             }
  8.         } else {
  9.             parent::display($context$blocks);
  10.         }
  11.     }
  1.         // line 12
  2.         $context["body_class"] = "product_page";
  3.         // line 10
  4.         $this->parent $this->loadTemplate("default_frame.twig""Product/list.twig"10);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  8.         
  9.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array()), array()) in src/Eccube/Twig/Template.php (line 40)
  1.             $eventDispatcher->dispatch($this->getTemplateName(), $event);
  2.             if ($event->getSource() !== $originCode) {
  3.                 $newTemplate $this->env->createTemplate($event->getSource());
  4.                 $newTemplate->display($event->getParameters(), $blocks);
  5.             } else {
  6.                 parent::display($event->getParameters(), $blocks);
  7.             }
  8.         } else {
  9.             parent::display($context$blocks);
  10.         }
  11.     }
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context, \func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.                 $this->twig->display($template->getTemplate(), $parameters);
  2.             };
  3.             $event->setResponse(new StreamedResponse($callback));
  4.         } else {
  5.             $event->setResponse(new Response($this->twig->render($template->getTemplate(), $parameters)));
  6.         }
  7.         // make sure the owner (controller+dependencies) is not cached or stored elsewhere
  8.         $template->setOwner([]);
  9.     }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
EventDispatcher->dispatch(object(ViewEvent), 'kernel.view') in src/Eccube/Event/EventDispatcherWrapper.php (line 32)
  1.             $swap $event;
  2.             $event $eventName ?? new Event();
  3.             $eventName $swap;
  4.         }
  5.         return parent::dispatch($event$eventName);
  6.     }
  7. }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.         $response $controller(...$arguments);
  2.         // view
  3.         if (!$response instanceof Response) {
  4.             $event = new ViewEvent($this$request$type$response);
  5.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  6.             if ($event->hasResponse()) {
  7.                 $response $event->getResponse();
  8.             } else {
  9.                 $msg sprintf('The controller must return a "Symfony\Component\HttpFoundation\Response" object but it returned %s.'$this->varToString($response));
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in index.php/ (line 82)
  1.         }
  2.     }
  3. }
  4. $kernel = new Kernel($env$debug);
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 3

Level Channel Message
DEBUG 09:06:29 doctrine SET SESSION time_zone = '+00:00'
DEBUG 09:06:29 doctrine 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.option_product_tax_rule AS option_product_tax_rule_25, t0.option_customer_activate AS option_customer_activate_26, t0.option_remember_me AS option_remember_me_27, t0.authentication_key AS authentication_key_28, t0.php_path AS php_path_29, t0.option_point AS option_point_30, t0.basic_point_rate AS basic_point_rate_31, t0.point_conversion_rate AS point_conversion_rate_32, t0.country_id AS country_id_33, t0.pref_id AS pref_id_34, t0.discriminator_type FROM dtb_base_info t0 WHERE t0.id = ? AND t0.discriminator_type IN ('baseinfo')
[
    1
]
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\DebugClassLoader" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: "Symfony\Component\Workflow\MarkingStore\SingleStateMarkingStore" is deprecated since Symfony 4.3, use "Symfony\Component\Workflow\MarkingStore\MethodMarkingStore" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The Symfony\Bundle\TwigBundle\Loader\FilesystemLoader class is deprecated since version 4.3 and will be removed in 5.0; use Twig notation for templates instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Using the WebserverBundle is deprecated since Symfony 4.4. The new Symfony local server has more features, you can use it instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "templating.locator" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "templating.name_parser" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\TemplateNameParser class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "base_template_class" option on Twig\Environment is deprecated since Twig 2.7.0.
{
    "exception": {}
}
INFO 09:06:29 app INIT
INFO 09:06:29 request Matched route "product_list".
{
    "route": "product_list",
    "route_parameters": {
        "_route": "product_list",
        "_controller": "Eccube\\Controller\\ProductController::index"
    },
    "request_uri": "https://www.dogstar-trading.com/products/list?category_id=89&pageno=2",
    "method": "GET"
}
INFO 09:06:29 security Populated the TokenStorage with an anonymous Token.
INFO 09:06:29 app PROCESS START
[
    "product_list"
]
DEBUG 09:06:29 doctrine 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')
[
    "product_list"
]
DEBUG 09:06:29 doctrine SELECT d0_.id AS id_0, d0_.layout_name AS layout_name_1, d0_.create_date AS create_date_2, d0_.update_date AS update_date_3, d1_.section AS section_4, d1_.block_id AS block_id_5, d1_.layout_id AS layout_id_6, d1_.block_row AS block_row_7, d2_.id AS id_8, d2_.block_name AS block_name_9, d2_.file_name AS file_name_10, d2_.use_controller AS use_controller_11, d2_.deletable AS deletable_12, d2_.create_date AS create_date_13, d2_.update_date AS update_date_14, d0_.discriminator_type AS discriminator_type_15, d0_.device_type_id AS device_type_id_16, d1_.discriminator_type AS discriminator_type_17, d1_.block_id AS block_id_18, d1_.layout_id AS layout_id_19, d2_.discriminator_type AS discriminator_type_20, d2_.device_type_id AS device_type_id_21 FROM dtb_layout d0_ LEFT JOIN dtb_block_position d1_ ON d0_.id = d1_.layout_id AND d1_.discriminator_type IN ('blockposition') LEFT JOIN dtb_block d2_ ON d1_.block_id = d2_.id AND d2_.discriminator_type IN ('block') WHERE (d0_.id = ?) AND d0_.discriminator_type IN ('layout') ORDER BY d1_.block_row ASC
[
    2
]
DEBUG 09:06:29 doctrine SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED
DEBUG 09:06:29 doctrine "START TRANSACTION"
DEBUG 09:06:29 front Begin Transaction.
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "SunCat\\MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Plugin\ProductReserve4\Form\Subscriber\ProductClassExtraSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Plugin\\ProductReserve4\\Form\\Subscriber\\ProductClassExtraSubscriber::onRequest"
}
INFO 09:06:29 app LOGIC START
[
    "product_list"
]
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController".
{
    "event": "kernel.controller_arguments",
    "listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
DEBUG 09:06:29 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 09:06:29 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 09:06:29 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"
}
DEBUG 09:06:29 doctrine SELECT d0_.id AS id_0, d0_.category_name AS category_name_1, d0_.hierarchy AS hierarchy_2, d0_.sort_no AS sort_no_3, d0_.create_date AS create_date_4, d0_.update_date AS update_date_5, d1_.id AS id_6, d1_.category_name AS category_name_7, d1_.hierarchy AS hierarchy_8, d1_.sort_no AS sort_no_9, d1_.create_date AS create_date_10, d1_.update_date AS update_date_11, d2_.id AS id_12, d2_.category_name AS category_name_13, d2_.hierarchy AS hierarchy_14, d2_.sort_no AS sort_no_15, d2_.create_date AS create_date_16, d2_.update_date AS update_date_17, d3_.id AS id_18, d3_.category_name AS category_name_19, d3_.hierarchy AS hierarchy_20, d3_.sort_no AS sort_no_21, d3_.create_date AS create_date_22, d3_.update_date AS update_date_23, d4_.id AS id_24, d4_.category_name AS category_name_25, d4_.hierarchy AS hierarchy_26, d4_.sort_no AS sort_no_27, d4_.create_date AS create_date_28, d4_.update_date AS update_date_29, d0_.discriminator_type AS discriminator_type_30, d0_.parent_category_id AS parent_category_id_31, d0_.creator_id AS creator_id_32, d1_.discriminator_type AS discriminator_type_33, d1_.parent_category_id AS parent_category_id_34, d1_.creator_id AS creator_id_35, d2_.discriminator_type AS discriminator_type_36, d2_.parent_category_id AS parent_category_id_37, d2_.creator_id AS creator_id_38, d3_.discriminator_type AS discriminator_type_39, d3_.parent_category_id AS parent_category_id_40, d3_.creator_id AS creator_id_41, d4_.discriminator_type AS discriminator_type_42, d4_.parent_category_id AS parent_category_id_43, d4_.creator_id AS creator_id_44 FROM dtb_category d0_ LEFT JOIN dtb_category d1_ ON d0_.id = d1_.parent_category_id AND d1_.discriminator_type IN ('category') LEFT JOIN dtb_category d2_ ON d1_.id = d2_.parent_category_id AND d2_.discriminator_type IN ('category') LEFT JOIN dtb_category d3_ ON d2_.id = d3_.parent_category_id AND d3_.discriminator_type IN ('category') LEFT JOIN dtb_category d4_ ON d3_.id = d4_.parent_category_id AND d4_.discriminator_type IN ('category') WHERE (d0_.parent_category_id IS NULL) AND d0_.discriminator_type IN ('category') ORDER BY d0_.sort_no DESC, d1_.sort_no DESC, d2_.sort_no DESC, d3_.sort_no DESC, d4_.sort_no DESC
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 doctrine SELECT m0_.id AS id_0, m0_.name AS name_1, m0_.sort_no AS sort_no_2, m0_.discriminator_type AS discriminator_type_3 FROM mtb_product_list_max m0_ WHERE m0_.discriminator_type IN ('productlistmax') ORDER BY m0_.sort_no ASC
DEBUG 09:06:29 doctrine SELECT m0_.id AS id_0, m0_.name AS name_1, m0_.sort_no AS sort_no_2, m0_.discriminator_type AS discriminator_type_3 FROM mtb_product_list_order_by m0_ WHERE m0_.discriminator_type IN ('productlistorderby') ORDER BY m0_.sort_no ASC
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 event Notified event "knp_pager.before" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\SortableSubscriber::before".
{
    "event": "knp_pager.before",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\SortableSubscriber::before"
}
DEBUG 09:06:29 event Notified event "knp_pager.before" to listener "Knp\Component\Pager\Event\Subscriber\Filtration\FiltrationSubscriber::before".
{
    "event": "knp_pager.before",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Filtration\\FiltrationSubscriber::before"
}
DEBUG 09:06:29 event Notified event "knp_pager.before" to listener "Knp\Component\Pager\Event\Subscriber\Paginate\PaginationSubscriber::before".
{
    "event": "knp_pager.before",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\PaginationSubscriber::before"
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 doctrine SELECT count(DISTINCT d0_.id) AS sclr_0 FROM dtb_product d0_ LEFT JOIN dtb_product_category d1_ ON d0_.id = d1_.product_id AND d1_.discriminator_type IN ('productcategory') LEFT JOIN dtb_category d2_ ON d1_.category_id = d2_.id AND d2_.discriminator_type IN ('category') WHERE (d0_.product_status_id = 1) AND d0_.discriminator_type IN ('product')
DEBUG 09:06:29 doctrine SELECT DISTINCT d0_.id AS id_0, d0_.id AS id_1 FROM dtb_product d0_ LEFT JOIN dtb_product_category d1_ ON d0_.id = d1_.product_id AND d1_.discriminator_type IN ('productcategory') LEFT JOIN dtb_category d2_ ON d1_.category_id = d2_.id AND d2_.discriminator_type IN ('category') WHERE (d0_.product_status_id = 1) AND d0_.discriminator_type IN ('product') ORDER BY d0_.id DESC LIMIT 20 OFFSET 20
DEBUG 09:06:29 doctrine SELECT d0_.id AS id_0, d0_.name AS name_1, d0_.note AS note_2, d0_.description_list AS description_list_3, d0_.description_detail AS description_detail_4, d0_.search_word AS search_word_5, d0_.free_area AS free_area_6, d0_.create_date AS create_date_7, d0_.update_date AS update_date_8, d0_.discriminator_type AS discriminator_type_9, d0_.creator_id AS creator_id_10, d0_.product_status_id AS product_status_id_11 FROM dtb_product d0_ LEFT JOIN dtb_product_category d1_ ON d0_.id = d1_.product_id AND d1_.discriminator_type IN ('productcategory') LEFT JOIN dtb_category d2_ ON d1_.category_id = d2_.id AND d2_.discriminator_type IN ('category') WHERE (d0_.product_status_id = 1 AND d0_.id IN (?)) AND d0_.discriminator_type IN ('product') ORDER BY d0_.id DESC
[
    [
        127,
        126,
        122,
        121,
        120,
        119,
        111,
        110,
        109,
        108,
        106,
        105,
        103,
        102,
        101,
        100,
        95,
        81,
        80,
        79
    ]
]
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ORM\QueryBuilderSubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ORM\\QueryBuilderSubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ODM\MongoDB\QueryBuilderSubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ODM\\MongoDB\\QueryBuilderSubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ODM\PHPCR\QueryBuilderSubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ODM\\PHPCR\\QueryBuilderSubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\DBALQueryBuilderSubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\DBALQueryBuilderSubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Plugin\MailMagazine4\Event\MailMagazineHistoryFilePaginationSubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Plugin\\MailMagazine4\\Event\\MailMagazineHistoryFilePaginationSubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\Doctrine\ORM\QuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\Doctrine\\ORM\\QuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\Doctrine\ODM\MongoDB\QuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\Doctrine\\ODM\\MongoDB\\QuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\ElasticaQuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\ElasticaQuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\PropelQuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\PropelQuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\SolariumQuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\SolariumQuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Sortable\ArraySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Sortable\\ArraySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Filtration\Doctrine\ORM\QuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Filtration\\Doctrine\\ORM\\QuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Filtration\PropelQuerySubscriber::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Filtration\\PropelQuerySubscriber::items"
}
DEBUG 09:06:29 event Notified event "knp_pager.items" to listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ORM\QuerySubscriber\UsesPaginator::items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ORM\\QuerySubscriber\\UsesPaginator::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ORM\QuerySubscriber\UsesPaginator::items" stopped propagation of the event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ORM\\QuerySubscriber\\UsesPaginator::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ORM\QuerySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ORM\\QuerySubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ODM\MongoDB\QuerySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ODM\\MongoDB\\QuerySubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ODM\PHPCR\QuerySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\ODM\\PHPCR\\QuerySubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\CollectionSubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\Doctrine\\CollectionSubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\PropelQuerySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\PropelQuerySubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\SolariumQuerySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\SolariumQuerySubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\ElasticaQuerySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\ElasticaQuerySubscriber::items"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\ArraySubscriber::items" was not called for event "knp_pager.items".
{
    "event": "knp_pager.items",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\ArraySubscriber::items"
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 event Notified event "knp_pager.pagination" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::pagination".
{
    "event": "knp_pager.pagination",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::pagination"
}
DEBUG 09:06:29 event Listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::pagination" stopped propagation of the event "knp_pager.pagination".
{
    "event": "knp_pager.pagination",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::pagination"
}
DEBUG 09:06:29 event Listener "Knp\Component\Pager\Event\Subscriber\Paginate\PaginationSubscriber::pagination" was not called for event "knp_pager.pagination".
{
    "event": "knp_pager.pagination",
    "listener": "Knp\\Component\\Pager\\Event\\Subscriber\\Paginate\\PaginationSubscriber::pagination"
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 doctrine SELECT d0_.id AS id_0, d0_.name AS name_1, d0_.note AS note_2, d0_.description_list AS description_list_3, d0_.description_detail AS description_detail_4, d0_.search_word AS search_word_5, d0_.free_area AS free_area_6, d0_.create_date AS create_date_7, d0_.update_date AS update_date_8, d1_.id AS id_9, d1_.product_code AS product_code_10, d1_.stock AS stock_11, d1_.stock_unlimited AS stock_unlimited_12, d1_.sale_limit AS sale_limit_13, d1_.price01 AS price01_14, d1_.price02 AS price02_15, d1_.delivery_fee AS delivery_fee_16, d1_.visible AS visible_17, d1_.create_date AS create_date_18, d1_.update_date AS update_date_19, d1_.currency_code AS currency_code_20, d1_.point_rate AS point_rate_21, d2_.id AS id_22, d2_.tax_rate AS tax_rate_23, d2_.tax_adjust AS tax_adjust_24, d2_.apply_date AS apply_date_25, d2_.create_date AS create_date_26, d2_.update_date AS update_date_27, d3_.id AS id_28, d3_.stock AS stock_29, d3_.create_date AS create_date_30, d3_.update_date AS update_date_31, d4_.id AS id_32, d4_.backend_name AS backend_name_33, d4_.name AS name_34, d4_.sort_no AS sort_no_35, d4_.visible AS visible_36, d4_.create_date AS create_date_37, d4_.update_date AS update_date_38, d5_.id AS id_39, d5_.backend_name AS backend_name_40, d5_.name AS name_41, d5_.sort_no AS sort_no_42, d5_.visible AS visible_43, d5_.create_date AS create_date_44, d5_.update_date AS update_date_45, d6_.id AS id_46, d6_.file_name AS file_name_47, d6_.sort_no AS sort_no_48, d6_.create_date AS create_date_49, d7_.id AS id_50, d7_.create_date AS create_date_51, d0_.discriminator_type AS discriminator_type_52, d0_.creator_id AS creator_id_53, d0_.product_status_id AS product_status_id_54, d1_.discriminator_type AS discriminator_type_55, d1_.product_id AS product_id_56, d1_.sale_type_id AS sale_type_id_57, d1_.class_category_id1 AS class_category_id1_58, d1_.class_category_id2 AS class_category_id2_59, d1_.delivery_duration_id AS delivery_duration_id_60, d1_.creator_id AS creator_id_61, d2_.discriminator_type AS discriminator_type_62, d2_.product_class_id AS product_class_id_63, d2_.creator_id AS creator_id_64, d2_.country_id AS country_id_65, d2_.pref_id AS pref_id_66, d2_.product_id AS product_id_67, d2_.rounding_type_id AS rounding_type_id_68, d3_.discriminator_type AS discriminator_type_69, d3_.product_class_id AS product_class_id_70, d3_.creator_id AS creator_id_71, d4_.discriminator_type AS discriminator_type_72, d4_.class_name_id AS class_name_id_73, d4_.creator_id AS creator_id_74, d5_.discriminator_type AS discriminator_type_75, d5_.class_name_id AS class_name_id_76, d5_.creator_id AS creator_id_77, d6_.discriminator_type AS discriminator_type_78, d6_.product_id AS product_id_79, d6_.creator_id AS creator_id_80, d7_.discriminator_type AS discriminator_type_81, d7_.product_id AS product_id_82, d7_.tag_id AS tag_id_83, d7_.creator_id AS creator_id_84 FROM dtb_product d0_ INNER JOIN dtb_product_class d1_ ON d0_.id = d1_.product_id AND d1_.discriminator_type IN ('productclass') LEFT JOIN dtb_tax_rule d2_ ON d1_.id = d2_.product_class_id AND d2_.discriminator_type IN ('taxrule') INNER JOIN dtb_product_stock d3_ ON d1_.id = d3_.product_class_id AND d3_.discriminator_type IN ('productstock') LEFT JOIN dtb_class_category d4_ ON d1_.class_category_id1 = d4_.id AND d4_.discriminator_type IN ('classcategory') LEFT JOIN dtb_class_category d5_ ON d1_.class_category_id2 = d5_.id AND d5_.discriminator_type IN ('classcategory') LEFT JOIN dtb_product_image d6_ ON d0_.id = d6_.product_id AND d6_.discriminator_type IN ('productimage') LEFT JOIN dtb_product_tag d7_ ON d0_.id = d7_.product_id AND d7_.discriminator_type IN ('producttag') WHERE (d0_.id IN (127, 126, 122, 121, 120, 119, 111, 110, 109, 108, 106, 105, 103, 102, 101, 100, 95, 81, 80, 79) AND d1_.visible = ?) AND d0_.discriminator_type IN ('product') ORDER BY d4_.sort_no DESC, d5_.sort_no DESC, d6_.sort_no ASC
[
    true
]
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 doctrine SELECT d0_.id AS id_0, d0_.tax_rate AS tax_rate_1, d0_.tax_adjust AS tax_adjust_2, d0_.apply_date AS apply_date_3, d0_.create_date AS create_date_4, d0_.update_date AS update_date_5, d0_.discriminator_type AS discriminator_type_6, d0_.product_class_id AS product_class_id_7, d0_.creator_id AS creator_id_8, d0_.country_id AS country_id_9, d0_.pref_id AS pref_id_10, d0_.product_id AS product_id_11, d0_.rounding_type_id AS rounding_type_id_12 FROM dtb_tax_rule d0_ WHERE (d0_.apply_date < ? AND d0_.pref_id IS NULL AND d0_.country_id IS NULL AND d0_.product_id IS NULL AND d0_.product_class_id IS NULL) AND d0_.discriminator_type IN ('taxrule') ORDER BY d0_.apply_date DESC
[
    {
        "date": "2024-03-29 00:06:29.358196",
        "timezone_type": 3,
        "timezone": "UTC"
    }
]
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.backend_name AS backend_name_2, t0.name AS name_3, t0.sort_no AS sort_no_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.creator_id AS creator_id_7, t0.discriminator_type FROM dtb_class_name t0 WHERE t0.id = ? AND t0.discriminator_type IN ('classname')
[
    3
]
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.backend_name AS backend_name_2, t0.name AS name_3, t0.sort_no AS sort_no_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.creator_id AS creator_id_7, t0.discriminator_type FROM dtb_class_name t0 WHERE t0.id = ? AND t0.discriminator_type IN ('classname')
[
    26
]
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.backend_name AS backend_name_2, t0.name AS name_3, t0.sort_no AS sort_no_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.creator_id AS creator_id_7, t0.discriminator_type FROM dtb_class_name t0 WHERE t0.id = ? AND t0.discriminator_type IN ('classname')
[
    1
]
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.backend_name AS backend_name_2, t0.name AS name_3, t0.sort_no AS sort_no_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.creator_id AS creator_id_7, t0.discriminator_type FROM dtb_class_name t0 WHERE t0.id = ? AND t0.discriminator_type IN ('classname')
[
    29
]
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.backend_name AS backend_name_2, t0.name AS name_3, t0.sort_no AS sort_no_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.creator_id AS creator_id_7, t0.discriminator_type FROM dtb_class_name t0 WHERE t0.id = ? AND t0.discriminator_type IN ('classname')
[
    27
]
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 doctrine SELECT t0.product_id AS product_id_1, t0.is_allowed AS is_allowed_2, t0.start_date AS start_date_3, t0.end_date AS end_date_4, t0.shipping_date AS shipping_date_5, t0.create_date AS create_date_6, t0.update_date AS update_date_7 FROM plg_product_reserve4_extra t0 WHERE t0.product_id IN (?)
[
    [
        127,
        126,
        122,
        121,
        120,
        119,
        111,
        110,
        109,
        108,
        106,
        105,
        103,
        102,
        101,
        100,
        95,
        81,
        80,
        79
    ]
]
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.is_allowed AS is_allowed_2, t0.start_date AS start_date_3, t0.end_date AS end_date_4, t0.shipping_date AS shipping_date_5, t0.shipping_date_changed AS shipping_date_changed_6, t0.create_date AS create_date_7, t0.update_date AS update_date_8, t0.product_class_id AS product_class_id_9, t0.class_category_id1 AS class_category_id1_10, t0.class_category_id2 AS class_category_id2_11, t0.product_id AS product_id_12 FROM plg_product_class_reserve4_extra t0 WHERE t0.product_id IN (?)
[
    [
        127,
        126,
        122,
        121,
        120,
        119,
        111,
        110,
        109,
        108,
        106,
        105,
        103,
        102,
        101,
        100,
        95,
        81,
        80,
        79
    ]
]
DEBUG 09:06:29 event Notified event "Product/list.twig" to listener "Plugin\CategoryRecommend4\CategoryRecommendEvent::onRenderProductList".
{
    "event": "Product/list.twig",
    "listener": "Plugin\\CategoryRecommend4\\CategoryRecommendEvent::onRenderProductList"
}
DEBUG 09:06:29 event Notified event "Product/list.twig" to listener "Plugin\ProductReserve4\Event::onProductListView".
{
    "event": "Product/list.twig",
    "listener": "Plugin\\ProductReserve4\\Event::onProductListView"
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 09:06:29 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 request Matched route "block_search_product".
{
    "route": "block_search_product",
    "route_parameters": {
        "_route": "block_search_product",
        "_controller": "Eccube\\Controller\\Block\\SearchProductController::index"
    },
    "request_uri": "https://www.dogstar-trading.com/block/search_product",
    "method": "GET"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "SunCat\\MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Plugin\ProductReserve4\Form\Subscriber\ProductClassExtraSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Plugin\\ProductReserve4\\Form\\Subscriber\\ProductClassExtraSubscriber::onRequest"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController".
{
    "event": "kernel.controller_arguments",
    "listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
DEBUG 09:06:29 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 09:06:29 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 09:06:29 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 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Calling the "Symfony\Component\EventDispatcher\EventDispatcherInterface::dispatch()" method with the event name as first argument is deprecated since Symfony 4.3, pass it second and provide the event object first instead.
{
    "exception": {}
}
DEBUG 09:06:29 event Notified event "kernel.view" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelView".
{
    "event": "kernel.view",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelView"
}
DEBUG 09:06:29 event Listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelView" stopped propagation of the event "kernel.view".
{
    "event": "kernel.view",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelView"
}
DEBUG 09:06:29 event Listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\PsrResponseListener::onKernelView" was not called for event "kernel.view".
{
    "event": "kernel.view",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\PsrResponseListener::onKernelView"
}
INFO 09:06:29 php User Deprecated: The default value of the "$secure" and "$samesite" arguments of "Symfony\Component\HttpFoundation\Cookie::__construct"'s constructor will respectively change from "false" to "null" and from "null" to "lax" in Symfony 5.0, you should define their values explicitly or use "Cookie::create()" instead.
{
    "exception": {}
}
DEBUG 09:06:29 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.enabled AS enabled_4, t0.version AS version_5, t0.source AS source_6, t0.initialized AS initialized_7, t0.create_date AS create_date_8, t0.update_date AS update_date_9, t0.discriminator_type FROM dtb_plugin t0 WHERE t0.discriminator_type IN ('plugin')
DEBUG 09:06:29 event Notified event "kernel.response" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleResponse".
{
    "event": "kernel.response",
    "listener": "SunCat\\MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Eccube\EventListener\LogListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Eccube\\EventListener\\LogListener::onKernelResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Eccube\EventListener\MaintenanceListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Eccube\\EventListener\\MaintenanceListener::onResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Plugin\RefineCheckItem\Event::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Plugin\\RefineCheckItem\\Event::onKernelResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 09:06:29 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 09:06:29 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 09:06:29 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 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 09:06:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 09:06:29 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 09:06:29 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 09:06:29 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 09:06:29 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 09:06:29 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"
}
INFO 09:06:29 request Matched route "block_BreadcrumbList4".
{
    "route": "block_BreadcrumbList4",
    "route_parameters": {
        "_route": "block_BreadcrumbList4",
        "_controller": "Plugin\\BreadcrumbList4\\Controller\\Block\\BreadcrumbList4Controller::index"
    },
    "request_uri": "https://www.dogstar-trading.com/block/BreadcrumbList4",
    "method": "GET"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "SunCat\\MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Plugin\ProductReserve4\Form\Subscriber\ProductClassExtraSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Plugin\\ProductReserve4\\Form\\Subscriber\\ProductClassExtraSubscriber::onRequest"
}
INFO 09:06:29 php User Deprecated: The "Sensio\Bundle\FrameworkExtraBundle\Configuration\Route" annotation is deprecated since version 5.2. Use "Symfony\Component\Routing\Annotation\Route" instead.
{
    "exception": {}
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController".
{
    "event": "kernel.controller_arguments",
    "listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
DEBUG 09:06:29 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 09:06:29 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 09:06:29 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 09:06:29 php User Deprecated: The "sensio_framework_extra.routing.loader.annot_class" service is deprecated since version 5.2
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Sensio\Bundle\FrameworkExtraBundle\Routing\AnnotatedRouteControllerLoader" class is deprecated since version 5.2. Use "Symfony\Bundle\FrameworkBundle\Routing\AnnotatedRouteControllerLoader" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "sensio_framework_extra.routing.loader.annot_dir" service is deprecated since version 5.2
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "sensio_framework_extra.routing.loader.annot_file" service is deprecated since version 5.2
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Loading the file "../../src/Eccube/Controller/" from the global resource directory "/home/dogstarhr/www/store/src/Eccube" is deprecated since Symfony 4.4 and will be removed in 5.0.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: Loading the file "../../app/Customize/Controller/" from the global resource directory "/home/dogstarhr/www/store/src/Eccube" is deprecated since Symfony 4.4 and will be removed in 5.0.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Sensio\Bundle\FrameworkExtraBundle\Configuration\Method" annotation is deprecated since version 5.2. Use "Symfony\Component\Routing\Annotation\Route" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\Exception\FatalThrowableError" class is deprecated since Symfony 4.4.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\Exception\FatalErrorException" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\Error\FatalError" instead.
{
    "exception": {}
}
CRITICAL 09:06:29 php Call to a member function getPath() on null
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\FatalErrorHandler\UndefinedFunctionFatalErrorHandler" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\ErrorEnhancer\UndefinedFunctionErrorEnhancer" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\FatalErrorHandler\FatalErrorHandlerInterface" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\FatalErrorHandler\FatalErrorHandlerInterface" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\FatalErrorHandler\UndefinedMethodFatalErrorHandler" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\ErrorEnhancer\UndefinedMethodErrorEnhancer" instead.
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\Debug\FatalErrorHandler\ClassNotFoundFatalErrorHandler" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\FatalErrorHandler\ClassNotFoundFatalErrorHandler" instead.
{
    "exception": {}
}
DEBUG 09:06:29 doctrine "ROLLBACK"
DEBUG 09:06:29 doctrine "START TRANSACTION"
DEBUG 09:06:29 front Rollback executed.
CRITICAL 09:06:29 request Uncaught PHP Exception Error: "Call to a member function getPath() on null" at /home/dogstarhr/www/store/app/Plugin/BreadcrumbList4/Controller/Block/BreadcrumbList4Controller.php line 94
{
    "exception": {}
}
INFO 09:06:29 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
ERROR 09:06:29 app Symfony\Component\Debug\Exception\FatalThrowableError: Call to a member function getPath() on null (uncaught exception) at /home/dogstarhr/www/store/app/Plugin/BreadcrumbList4/Controller/Block/BreadcrumbList4Controller.php line 94
{
    "exception": {}
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Monolog\\Processor\\WebProcessor::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\IpAddrListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\MobileTemplatePathListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequestEarly"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\LogListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TwigInitializeListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "SunCat\\MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Eccube\\EventListener\\TransactionListener::onKernelRequest"
}
DEBUG 09:06:29 event Notified event "kernel.request" to listener "Plugin\ProductReserve4\Form\Subscriber\ProductClassExtraSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "Plugin\\ProductReserve4\\Form\\Subscriber\\ProductClassExtraSubscriber::onRequest"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\ForwardOnlyListener::onController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Eccube\\EventListener\\LogListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 09:06:29 event Notified event "kernel.controller_arguments" to listener "Eccube\EventListener\TwoFactorAuthListener::onKernelController".
{
    "event": "kernel.controller_arguments",
    "listener": "Eccube\\EventListener\\TwoFactorAuthListener::onKernelController"
}
DEBUG 09:06:29 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 09:06:29 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 09:06:29 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 Trace

Error

Error:
Call to a member function getPath() on null

  at app/Plugin/BreadcrumbList4/Controller/Block/BreadcrumbList4Controller.php:94
  at Plugin\BreadcrumbList4\Controller\Block\BreadcrumbList4Controller->index(object(Router))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:85)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 2, false)
     (vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php:81)
  at Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render('/block/BreadcrumbList4', object(Request), array('ignore_errors' => false))
     (vendor/symfony/http-kernel/Fragment/FragmentHandler.php:85)
  at Symfony\Component\HttpKernel\Fragment\FragmentHandler->render('/block/BreadcrumbList4', 'inline', array('ignore_errors' => false))
     (vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php:45)
  at Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render('/block/BreadcrumbList4', 'inline', array())
     (vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php:48)
  at Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment('/block/BreadcrumbList4')
     (var/cache/dev/twig/3d/3d234e51c19ebf9eda126188a546f04386d75b6d2bfc5f24b9f8c2b5baf85947.php:55)
  at __TwigTemplate_c1c19fbcbee3d9ae96ffea0c405105fe1ed221e5dded71fd3f49cd566c649ae5->doDisplay(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block)), '_parent' => array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))), '_seq' => array(object(Block)), 'Block' => object(Block), '_key' => 0), array())
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))), array())
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))), array())
     (src/Eccube/Twig/Template.php:40)
  at Eccube\Twig\Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))))
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))))
     (vendor/twig/twig/src/Extension/CoreExtension.php:1288)
  at twig_include(object(Environment), array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main'), 'block.twig', array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main', 'Blocks' => array(object(Block))))
     (var/cache/dev/twig/9d/9d6662d5bf34b26d688a3be560c73281233272e76b7d660318771eed06a71ac7.php:259)
  at __TwigTemplate_b90781604a4d3d53fb90a1bda10e46f79adf33c43600d67e8fccfab55c64255d->doDisplay(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page', 'layoutRoleMain' => 'ec-layoutRole__main'), array('stylesheet' => array(object(__TwigTemplate_b90781604a4d3d53fb90a1bda10e46f79adf33c43600d67e8fccfab55c64255d), 'block_stylesheet'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main'), 'javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page'), array('stylesheet' => array(object(__TwigTemplate_b90781604a4d3d53fb90a1bda10e46f79adf33c43600d67e8fccfab55c64255d), 'block_stylesheet'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main'), 'javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page'), array('javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main')))
     (src/Eccube/Twig/Template.php:40)
  at Eccube\Twig\Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page'), array('javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main')))
     (var/cache/dev/twig/fb/fb3c6e6457dbf0aecf5a2937cec118b4a20b6968e64da1f7194a58d04c5e5656.php:52)
  at __TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021->doDisplay(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false, 'body_class' => 'product_page'), array('javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array(), 'app' => object(AppVariable), 'BaseInfo' => object(BaseInfo), 'eccube_config' => object(EccubeConfig), 'event_dispatcher' => object(TraceableEventDispatcher), 'Layout' => object(Layout), 'Page' => object(Page), 'title' => '商品一覧ページ', 'isMaintenance' => false), array('javascript' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_javascript'), 'main' => array(object(__TwigTemplate_6082429de4730721cf0e3c21638d70ef188a4de6ad1d9f3b998cf82a6b219021), 'block_main')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null, 'plugin_snippets' => array('@CategoryRecommend4/default/Product/list.twig' => true, '@ProductReserve4/default/Product/product_list.twig' => true), 'productreserve4_list' => array(), 'productreserve4_class_list' => array()), array())
     (src/Eccube/Twig/Template.php:40)
  at Eccube\Twig\Template->display(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null))
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null), array())
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render(array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null))
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render('Product/list.twig', array('subtitle' => '全商品', 'pagination' => object(SlidingPagination), 'search_form' => object(FormView), 'disp_number_form' => object(FormView), 'order_by_form' => object(FormView), 'forms' => array(object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView), object(FormView)), 'Category' => null))
     (vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php:115)
  at Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener->onKernelView(object(ViewEvent), 'kernel.view', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ViewEvent), 'kernel.view', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(array(object(WrappedListener), object(WrappedListener)), 'kernel.view', object(ViewEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener)), 'kernel.view', object(ViewEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ViewEvent), 'kernel.view')
     (src/Eccube/Event/EventDispatcherWrapper.php:32)
  at Eccube\Event\EventDispatcherWrapper->dispatch(object(ViewEvent), 'kernel.view')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ViewEvent), 'kernel.view')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (index.php/:82)