Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

The "page" has not been found

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      * @throws NotFoundHttpException
  2.      */
  3.     protected function findOr404(RequestConfiguration $configuration): ResourceInterface
  4.     {
  5.         if (null === $resource $this->singleResourceProvider->get($configuration$this->repository)) {
  6.             throw new NotFoundHttpException(sprintf('The "%s" has not been found'$this->metadata->getHumanizedName()));
  7.         }
  8.         return $resource;
  9.     }
  10. }
  1.     public function showAction(Request $request): Response
  2.     {
  3.         $configuration $this->requestConfigurationFactory->create($this->metadata$request);
  4.         $this->isGrantedOr403($configurationResourceActions::SHOW);
  5.         $resource $this->findOr404($configuration);
  6.         $this->eventDispatcher->dispatch(ResourceActions::SHOW$configuration$resource);
  7.         $view View::create($resource);
in vendor/symfony/http-kernel/HttpKernel.php->showAction (line 158)
  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.         $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 public/index.php (line 33)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 01:48:53 php User Deprecated: The "Symfony\Component\Debug\DebugClassLoader" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.
{
    "exception": {}
}
INFO 01:48:53 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 01:48:53 php User Deprecated: The "Symfony\Component\HttpKernel\EventListener\TranslatorListener" class is deprecated since Symfony 4.3 and will be removed in 5.0, use LocaleAwareListener instead.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The "sylius.theme.templating.file_locator.inner" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 01:48:53 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 01:48:53 php User Deprecated: The "templating.name_parser" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 01:48:53 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 01:48:53 php User Deprecated: YAML mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to annotation or XML driver.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The "templating" service is deprecated since Symfony 4.4 and will be removed in 5.0.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The Symfony\Bundle\TwigBundle\TwigEngine class is deprecated since version 4.3 and will be removed in 5.0; use \Twig\Environment instead.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The Symfony\Bridge\Twig\TwigEngine class is deprecated since version 4.3 and will be removed in 5.0; use \Twig\Environment instead.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\EngineInterface interface is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The "sonata.core.model.adapter.chain" service is deprecated in favor of service "sonata.doctrine.model.adapter.chain" since 3.12.0 and will be removed in 4.0.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The Sonata\CoreBundle\Model\Adapter\AdapterChain class is deprecated since version 3.12.0 and will be removed in 4.0. Use Sonata\Doctrine\Adapter\AdapterChain instead.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The "sonata.core.model.adapter.doctrine_orm" service is deprecated in favor of service "sonata.doctrine.adapter.doctrine_orm" since 3.12.0 and will be removed in 4.0.
{
    "exception": {}
}
INFO 01:48:53 php User Deprecated: The Sonata\CoreBundle\Model\Adapter\DoctrineORMAdapter class is deprecated since version 3.12.0 and will be removed in 4.0. Use Sonata\Doctrine\Adapter\ORM\DoctrineORMAdapter instead.
{
    "exception": {}
}
INFO 01:48:53 request Matched route "bitbag_sylius_cms_plugin_shop_page_show".
{
    "route": "bitbag_sylius_cms_plugin_shop_page_show",
    "route_parameters": {
        "_route": "bitbag_sylius_cms_plugin_shop_page_show",
        "_controller": "bitbag_sylius_cms_plugin.controller.page:showAction",
        "_sylius": {
            "template": "@BitBagSyliusCmsPlugin/Shop/Page/show.html.twig",
            "repository": {
                "method": "findOneEnabledBySlugAndChannelCode",
                "arguments": [
                    "$slug",
                    "expr:service('sylius.context.locale').getLocaleCode()",
                    "expr:service('sylius.context.channel').getChannel().getCode()"
                ]
            }
        },
        "_locale": "ro",
        "slug": "locatii-scala-pay"
    },
    "request_uri": "https://www.vinietaoxigen.ro/ro/info/locatii-scala-pay",
    "method": "GET"
}
DEBUG 01:48:54 doctrine SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_13, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_14, t0.account_verification_required AS account_verification_required_15, t0.default_locale_id AS default_locale_id_16, t17.code AS code_18, t17.created_at AS created_at_19, t17.updated_at AS updated_at_20, t17.id AS id_21, t0.base_currency_id AS base_currency_id_22, t23.code AS code_24, t23.created_at AS created_at_25, t23.updated_at AS updated_at_26, t23.id AS id_27, t0.default_tax_zone_id AS default_tax_zone_id_28, t0.shop_billing_data_id AS shop_billing_data_id_29 FROM sylius_channel t0 INNER JOIN sylius_locale t17 ON t0.default_locale_id = t17.id INNER JOIN sylius_currency t23 ON t0.base_currency_id = t23.id WHERE t0.hostname = ? LIMIT 1
[
    "www.vinietaoxigen.ro"
]
INFO 01:48:54 php User Deprecated: Passing previous exception as the first argument is deprecated since 1.2 and will be prohibited since 2.0.
{
    "exception": {}
}
DEBUG 01:48:54 doctrine SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_13, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_14, t0.account_verification_required AS account_verification_required_15, t0.default_locale_id AS default_locale_id_16, t17.code AS code_18, t17.created_at AS created_at_19, t17.updated_at AS updated_at_20, t17.id AS id_21, t0.base_currency_id AS base_currency_id_22, t23.code AS code_24, t23.created_at AS created_at_25, t23.updated_at AS updated_at_26, t23.id AS id_27, t0.default_tax_zone_id AS default_tax_zone_id_28, t0.shop_billing_data_id AS shop_billing_data_id_29 FROM sylius_channel t0 INNER JOIN sylius_locale t17 ON t0.default_locale_id = t17.id INNER JOIN sylius_currency t23 ON t0.base_currency_id = t23.id
DEBUG 01:48:54 doctrine SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4 FROM sylius_currency t0 INNER JOIN sylius_channel_currencies ON t0.id = sylius_channel_currencies.currency_id WHERE sylius_channel_currencies.channel_id = ?
[
    1
]
DEBUG 01:48:54 doctrine SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ?
[
    1
]
INFO 01:48:54 security Populated the TokenStorage with an anonymous Token.
DEBUG 01:48:54 doctrine SELECT v0_.id AS id_0, v0_.date_from AS date_from_1, v0_.date_to AS date_to_2 FROM vignette_maintenance v0_ ORDER BY v0_.id DESC LIMIT 1
DEBUG 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategy::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategy::onEvent"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Setono\TagBagBundle\EventListener\PopulateTagBagSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Setono\\TagBagBundle\\EventListener\\PopulateTagBagSubscriber::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sentry\SentryBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sentry\\SentryBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sentry\SentryBundle\EventListener\SubRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sentry\\SentryBundle\\EventListener\\SubRequestListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\NonChannelLocaleListener::restrictRequestLocale".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\FirewallRcaPartnersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\FirewallRcaPartnersListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\FirewallObsidianPartnersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\FirewallObsidianPartnersListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\FirewallPartnerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\FirewallPartnerListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\DailyMaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\DailyMaintenanceListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\WrongOneSignalUrlListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\WrongOneSignalUrlListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\CartListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\CartListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\RbacPlugin\Access\Listener\AccessCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\RbacPlugin\\Access\\Listener\\AccessCheckListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
DEBUG 01:48:54 doctrine SELECT p0_.id AS id_0, p0_.vignette_status AS vignette_status_1, p0_.vignette_road_assistance_status AS vignette_road_assistance_status_2, p0_.vignette_sms_status AS vignette_sms_status_3, p0_.hu_vignette_status AS hu_vignette_status_4, p0_.rca_status AS rca_status_5, p0_.rca_road_assistance_status AS rca_road_assistance_status_6, p0_.road_assistance_status AS road_assistance_status_7, p0_.death_insurance_status AS death_insurance_status_8, p0_.extra_options_status AS extra_options_status_9, p0_.extra_options_death_insurance_status AS extra_options_death_insurance_status_10, p0_.extra_options_road_assistance_status AS extra_options_road_assistance_status_11, p0_.extra_options_sms_status AS extra_options_sms_status_12, p0_.discount_rca_commission AS discount_rca_commission_13, p0_.created_at AS created_at_14, p0_.updated_at AS updated_at_15, p0_.admin_id AS admin_id_16 FROM product_status p0_ ORDER BY p0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT p0_.id AS id_0, p0_.vignette_status AS vignette_status_1, p0_.vignette_road_assistance_status AS vignette_road_assistance_status_2, p0_.vignette_sms_status AS vignette_sms_status_3, p0_.hu_vignette_status AS hu_vignette_status_4, p0_.rca_status AS rca_status_5, p0_.rca_road_assistance_status AS rca_road_assistance_status_6, p0_.road_assistance_status AS road_assistance_status_7, p0_.death_insurance_status AS death_insurance_status_8, p0_.extra_options_status AS extra_options_status_9, p0_.extra_options_death_insurance_status AS extra_options_death_insurance_status_10, p0_.extra_options_road_assistance_status AS extra_options_road_assistance_status_11, p0_.extra_options_sms_status AS extra_options_sms_status_12, p0_.discount_rca_commission AS discount_rca_commission_13, p0_.created_at AS created_at_14, p0_.updated_at AS updated_at_15 FROM product_status p0_ ORDER BY p0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT t0_.id AS id_0, t0_.status AS status_1, t0_.created_at AS created_at_2, t0_.updated_at AS updated_at_3, t0_.admin_id AS admin_id_4 FROM template_status t0_ ORDER BY t0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT t0_.id AS id_0, t0_.status AS status_1, t0_.created_at AS created_at_2, t0_.updated_at AS updated_at_3 FROM template_status t0_ ORDER BY t0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT c0_.id AS id_0, c0_.ar_promo_price_status AS ar_promo_price_status_1, c0_.ar_promo_price AS ar_promo_price_2, c0_.created_at AS created_at_3, c0_.updated_at AS updated_at_4, c0_.admin_id AS admin_id_5 FROM campaign_status c0_ ORDER BY c0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT c0_.id AS id_0, c0_.ar_promo_price_status AS ar_promo_price_status_1, c0_.ar_promo_price AS ar_promo_price_2, c0_.created_at AS created_at_3, c0_.updated_at AS updated_at_4 FROM campaign_status c0_ ORDER BY c0_.id DESC LIMIT 1
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sentry\SentryBundle\EventListener\RequestListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sentry\\SentryBundle\\EventListener\\RequestListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "App\EventSubscriber\System\TwigGlobalSubscriber::injectGlobalVariables".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\System\\TwigGlobalSubscriber::injectGlobalVariables"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 01:48:54 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 01:48:54 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 01:48:54 php User Deprecated: Passing a third argument to "Symfony\Component\HttpFoundation\HeaderBag::get()" is deprecated since Symfony 4.4, use method "all()" instead
{
    "exception": {}
}
INFO 01:48:54 php User Deprecated: Passing a third argument to "Symfony\Component\HttpFoundation\HeaderBag::get()" is deprecated since Symfony 4.4, use method "all()" instead
{
    "exception": {}
}
DEBUG 01:48:54 doctrine SELECT b0_.id AS id_0, b0_.code AS code_1, b0_.enabled AS enabled_2, b0_.created_at AS created_at_3, b0_.updated_at AS updated_at_4 FROM bitbag_cms_page b0_ LEFT JOIN bitbag_cms_page_translation b1_ ON b0_.id = b1_.translatable_id INNER JOIN bitbag_cms_page_channels b3_ ON b0_.id = b3_.page_id INNER JOIN sylius_channel s2_ ON s2_.id = b3_.channel_id WHERE b1_.locale = ? AND b1_.slug = ? AND s2_.code = ? AND b0_.enabled = 1
[
    "ro",
    "locatii-scala-pay",
    "default"
]
DEBUG 01:48:54 doctrine SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_13, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_14, t0.account_verification_required AS account_verification_required_15, t0.default_locale_id AS default_locale_id_16, t17.code AS code_18, t17.created_at AS created_at_19, t17.updated_at AS updated_at_20, t17.id AS id_21, t0.base_currency_id AS base_currency_id_22, t23.code AS code_24, t23.created_at AS created_at_25, t23.updated_at AS updated_at_26, t23.id AS id_27, t0.default_tax_zone_id AS default_tax_zone_id_28, t0.shop_billing_data_id AS shop_billing_data_id_29 FROM sylius_channel t0 INNER JOIN sylius_locale t17 ON t0.default_locale_id = t17.id INNER JOIN sylius_currency t23 ON t0.base_currency_id = t23.id
INFO 01:48:54 php User Deprecated: The "twig.exception_listener" service is deprecated since Symfony 4.4.
{
    "exception": {}
}
INFO 01:48:54 php User Deprecated: The "Symfony\Component\HttpKernel\EventListener\ExceptionListener" class is deprecated since Symfony 4.4, use "ErrorListener" instead.
{
    "exception": {}
}
INFO 01:48:54 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
INFO 01:48:54 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
ERROR 01:48:54 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "The "page" has not been found" at /vhosts/vinietaoxigen.ro/vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php line 558
{
    "exception": {}
}
INFO 01:48:54 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
DEBUG 01:48:54 doctrine SELECT v0_.id AS id_0, v0_.date_from AS date_from_1, v0_.date_to AS date_to_2 FROM vignette_maintenance v0_ ORDER BY v0_.id DESC LIMIT 1
DEBUG 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 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 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategy::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategy::onEvent"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Setono\TagBagBundle\EventListener\PopulateTagBagSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Setono\\TagBagBundle\\EventListener\\PopulateTagBagSubscriber::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sentry\SentryBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sentry\\SentryBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sentry\SentryBundle\EventListener\SubRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sentry\\SentryBundle\\EventListener\\SubRequestListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\NonChannelLocaleListener::restrictRequestLocale".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\NonChannelLocaleListener::restrictRequestLocale"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\FirewallRcaPartnersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\FirewallRcaPartnersListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\FirewallObsidianPartnersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\FirewallObsidianPartnersListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\FirewallPartnerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\FirewallPartnerListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\DailyMaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\DailyMaintenanceListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\WrongOneSignalUrlListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\WrongOneSignalUrlListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "App\EventListener\CartListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\CartListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\RbacPlugin\Access\Listener\AccessCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\RbacPlugin\\Access\\Listener\\AccessCheckListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 01:48:54 event Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest"
}
DEBUG 01:48:54 doctrine SELECT p0_.id AS id_0, p0_.vignette_status AS vignette_status_1, p0_.vignette_road_assistance_status AS vignette_road_assistance_status_2, p0_.vignette_sms_status AS vignette_sms_status_3, p0_.hu_vignette_status AS hu_vignette_status_4, p0_.rca_status AS rca_status_5, p0_.rca_road_assistance_status AS rca_road_assistance_status_6, p0_.road_assistance_status AS road_assistance_status_7, p0_.death_insurance_status AS death_insurance_status_8, p0_.extra_options_status AS extra_options_status_9, p0_.extra_options_death_insurance_status AS extra_options_death_insurance_status_10, p0_.extra_options_road_assistance_status AS extra_options_road_assistance_status_11, p0_.extra_options_sms_status AS extra_options_sms_status_12, p0_.discount_rca_commission AS discount_rca_commission_13, p0_.created_at AS created_at_14, p0_.updated_at AS updated_at_15, p0_.admin_id AS admin_id_16 FROM product_status p0_ ORDER BY p0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT p0_.id AS id_0, p0_.vignette_status AS vignette_status_1, p0_.vignette_road_assistance_status AS vignette_road_assistance_status_2, p0_.vignette_sms_status AS vignette_sms_status_3, p0_.hu_vignette_status AS hu_vignette_status_4, p0_.rca_status AS rca_status_5, p0_.rca_road_assistance_status AS rca_road_assistance_status_6, p0_.road_assistance_status AS road_assistance_status_7, p0_.death_insurance_status AS death_insurance_status_8, p0_.extra_options_status AS extra_options_status_9, p0_.extra_options_death_insurance_status AS extra_options_death_insurance_status_10, p0_.extra_options_road_assistance_status AS extra_options_road_assistance_status_11, p0_.extra_options_sms_status AS extra_options_sms_status_12, p0_.discount_rca_commission AS discount_rca_commission_13, p0_.created_at AS created_at_14, p0_.updated_at AS updated_at_15 FROM product_status p0_ ORDER BY p0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT t0_.id AS id_0, t0_.status AS status_1, t0_.created_at AS created_at_2, t0_.updated_at AS updated_at_3, t0_.admin_id AS admin_id_4 FROM template_status t0_ ORDER BY t0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT t0_.id AS id_0, t0_.status AS status_1, t0_.created_at AS created_at_2, t0_.updated_at AS updated_at_3 FROM template_status t0_ ORDER BY t0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT c0_.id AS id_0, c0_.ar_promo_price_status AS ar_promo_price_status_1, c0_.ar_promo_price AS ar_promo_price_2, c0_.created_at AS created_at_3, c0_.updated_at AS updated_at_4, c0_.admin_id AS admin_id_5 FROM campaign_status c0_ ORDER BY c0_.id DESC LIMIT 1
DEBUG 01:48:54 doctrine SELECT c0_.id AS id_0, c0_.ar_promo_price_status AS ar_promo_price_status_1, c0_.ar_promo_price AS ar_promo_price_2, c0_.created_at AS created_at_3, c0_.updated_at AS updated_at_4 FROM campaign_status c0_ ORDER BY c0_.id DESC LIMIT 1
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sentry\SentryBundle\EventListener\RequestListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sentry\\SentryBundle\\EventListener\\RequestListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "App\EventSubscriber\System\TwigGlobalSubscriber::injectGlobalVariables".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\System\\TwigGlobalSubscriber::injectGlobalVariables"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 01:48:54 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 01:48:54 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 01:48:54 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 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/exception_ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/exception_ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/exception_ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/layout.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/layout.html.twig"
]
INFO 01:48:54 php User Deprecated: The template "@Twig/layout.html.twig" is deprecated since Symfony 4.4, will be removed in 5.0. ("@Twig/layout.html.twig" at line 1).
{
    "exception": {}
}
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/favicon.png.base64"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/favicon.png.base64"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/exception.css.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/exception.css.twig"
]
INFO 01:48:54 php User Deprecated: The template "@Twig/exception.css.twig" is deprecated since Symfony 4.4, will be removed in 5.0. ("@Twig/exception.css.twig" at line 1).
{
    "exception": {}
}
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/symfony-logo.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/symfony-logo.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-book.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-book.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-support.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-support.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/exception. [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/exception. [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/symfony-ghost.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/symfony-ghost.svg"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/traces.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/traces.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/Exception/trace.html.twig"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-minus-sq [...]"
]
DEBUG 01:48:54 doctrine SELECT t0.id AS id_1, t0.filename AS filename_2, t0.subject AS subject_3, t0.source AS source_4, t0.last_updated AS last_updated_5, t0.mandrill_template_name AS mandrill_template_name_6, t0.mail_id AS mail_id_7 FROM templates t0 WHERE t0.filename = ? LIMIT 1
[
    "@Twig/images/icon-plus-squ [...]"
]

Stack Trace

NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
The "page" has not been found

  at vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php:558
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->findOr404(object(RequestConfiguration))
     (vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php:130)
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->showAction(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  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))
     (public/index.php:33)