| exception |
Twig\Error\RuntimeError {#1245
#message: "Variable "variant" does not exist."
#code: 0
#file: "/home/demodump/anuppu.in/templates/cart/index.html.twig"
#line: 112
-lineno: 112
-name: "cart/index.html.twig"
-rawMessage: "Variable "variant" does not exist."
-sourcePath: "/home/demodump/anuppu.in/templates/cart/index.html.twig"
-sourceCode: """
{% extends 'site-base.html.twig' %}\n
\n
{% block title %} ANUPPU - Cart{% endblock %}\n
\n
{% block body %}\n
\n
<section class="section" id="productsearchsection">\n
<div class="row">\n
<div class="col-lg-12">\n
<div class="card">\n
<div class="card-body">\n
<h5 class="card-title">My Carts Page</h5>\n
\n
{% if allCarts | length > 0 %}\n
<!-- Bordered Tabs -->\n
<ul class="nav nav-tabs nav-tabs-bordered" id="borderedTab" role="tablist">\n
{% for shopName in shopNameArr %}\n
<li class="nav-item" role="presentation">\n
<button class="nav-link {% if loop.index == 1 %}active{% endif %}" id="home-tab" data-bs-toggle="tab" data-bs-target="#bordered-tab{{loop.index0}}" type="button" role="tab" aria-controls="home" aria-selected="true">{{shopName}} </button>\n
</li>\n
{% endfor %}\n
</ul>\n
<div class="tab-content pt-2" id="borderedTabContent">\n
{% set total = 0 %} {% set subtotal = 0 %} {% set total1 = 0 %} {% set gtotal = 0 %} {% set gtotal1 = 0 %}\n
{% set presc = 0 %}\n
{% for shopid1, thisEstb in allCarts %}\n
{% set total1 = 0 %}\n
{% if enablecheckoutlinkboolean[shopid1] is defined %}\n
{% set enablecheckoutlink = enablecheckoutlinkboolean[shopid1] %}\n
{% endif %}\n
<div class="tab-pane fade show {% if loop.index == 1 %} active {% endif %}" id="bordered-tab{{loop.index0}}" role="tabpanel" aria-labelledby="home-tab">\n
{% if prescription[shopid1] is defined %}\n
{% if prescription[shopid1] == "yes" %}\n
{% set presc = 1 %}\n
\t{% endif %}\n
{% endif %}\n
\n
<!-- Primary Color Bordered Table -->\n
{% set thisshopid = "" %}\n
<div id="shoploading{{shopid1}}" style="height:20px;"></div>\n
<div id="shop{{shopid1}}" style="overflow:scroll;">\n
<table class="table table-bordered border-primary">\n
<thead>\n
<tr>\n
<th scope="col">Sl.No.</th>\n
<th scope="col">Product Name</th>\n
<th scope="col">Product Price</th>\n
<th scope="col">Quantity</th>\n
<th scope="col">Sub Total</th>\n
</tr>\n
</thead>\n
<tbody>\n
{% set slno = 0 %}\n
\n
{% set totaltax = 0 %} {% set productTaxAmount = 0 %} {% set productTaxPercentage = 0 %}\n
{% set thisprodprice = 0 %}\n
{% for estbid, thisCart in thisEstb %}\n
{% set cartid = thisCart['cartid'] %}\n
{% set thisshopid = thisCart['shopid'] %}\n
{% if productTax[thisshopid][thisCart['productid']]['taxamount'] is defined %}\n
{% set productTaxAmount = productTax[thisshopid][thisCart['productid']]['taxamount'] %}\n
{% endif %}\n
{% if productTax[thisshopid][thisCart['productid']]['taxpercentage'] is defined %}\n
{% set productTaxPercentage = productTax[thisshopid][thisCart['productid']]['taxpercentage'] %}\n
{% endif %}\n
\n
{% if productPrice[thisCart['shopid']][thisCart['productid']] is defined %}\n
{% if productPrice[thisCart['shopid']][thisCart['productid']] != "" %}\n
{% set thisprodprice = productPrice[thisCart['shopid']][thisCart['productid']] %}\n
{% else %}\n
{% set thisprodprice = 0 %}\n
{% endif %}\n
{% else %}\n
{% set thisprodprice = 0 %}\n
{% endif %}\n
\n
{% set totaltax = totaltax + productTaxAmount %}\n
\n
{% if cartVariantList[cartid][thisshopid][thisCart['productid']] is defined %}\n
{% if cartVariantList[cartid][thisshopid][thisCart['productid']] is iterable %}\n
{% for variant in cartVariantList[cartid][thisshopid][thisCart['productid']] %}\n
\n
<tr id="row{{thisCart['productid']}}-{{thisCart['shopid']}}">\n
<td scope="row">{% set slno = slno + 1 %} {{ slno }}</td>\n
<td><a href="{{path('app_shop_product_details',{shopid:thisCart['shopid'],productid:thisCart['productid']})}}" target="_blank">{{thisCart['productname']}} ({{ variant['packvariantname'] }})</a></td>\n
<td><!-- {{thisprodprice}} --> {{ variant['packagevariantprice'] }}</td>\n
<td>\n
<button class="btn btn-primary" onClick="cartQtyAction('delete','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-trash"></i></button>\n
{% if thisCart['stock'] == "0" %}\n
<!-- {{thisCart['quantity']}} -->\n
<button class="btn btn-primary" onClick="cartQtyAction('minus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-dash"></i></button>\n
<button id="qty{{thisCart['productid']}}" class="btn btn-primary" style="background-color:#FFFFFF;color:#0d6efd;">{{ variant['variantquantity'] }}</button>\n
<button class="btn btn-primary" onClick="cartQtyAction('plus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-plus"></i></button>\n
<div id="cartupdateloading{{thisCart['productid']}}-{{thisCart['shopid']}}"></div>\n
{% else %}\n
<span style="color:red;">Out of Stock</span>\n
{% endif %}\n
</td>\n
{% set price = variant['packagevariantprice'] %}\n
{% set quantity = variant['variantquantity'] %}\n
<td>{% set subtotal = (price * quantity) %} {{subtotal}} \n
{% set total1 = (total1 + subtotal) %} </td>\n
</tr>\n
{% set total = total1 %} \n
{% endfor %}\n
{% endif %}\n
{% set gtotal = gtotal + total %} \n
{% else %}\n
\n
<tr id="row{{thisCart['productid']}}-{{thisCart['shopid']}}">\n
<td scope="row">{% set slno = slno + 1 %} {{ slno }}</td>\n
<td><a href="{{path('app_shop_product_details',{shopid:thisCart['shopid'],productid:thisCart['productid']})}}" target="_blank">{{thisCart['productname']}} ({{ variant['packvariantname'] }})</a></td>\n
<td>{{thisprodprice}} </td>\n
<td>\n
<button class="btn btn-primary" onClick="cartQtyAction('delete','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-trash"></i></button>\n
{% if thisCart['stock'] == "0" %}\n
<!-- {{thisCart['quantity']}} -->\n
<button class="btn btn-primary" onClick="cartQtyAction('minus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-dash"></i></button>\n
<button id="qty{{thisCart['productid']}}" class="btn btn-primary" style="background-color:#FFFFFF;color:#0d6efd;">{{thisCart['quantity']}}</button>\n
<button class="btn btn-primary" onClick="cartQtyAction('plus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-plus"></i></button>\n
<div id="cartupdateloading{{thisCart['productid']}}-{{thisCart['shopid']}}"></div>\n
{% else %}\n
<span style="color:red;">Out of Stock</span>\n
{% endif %}\n
</td>\n
{% set price = variant['packagevariantprice'] %}\n
{% set quantity = variant['variantquantity'] %}\n
<td>{% set subtotal = (price * quantity) %} {{subtotal}} \n
{% set total1 = (total1 + subtotal) %} </td>\n
</tr>\n
\n
{% endif %}\n
{% endfor %}\n
\n
</tbody>\n
<tr><th colspan="3" style="text-align:right;">Total</th><th>{{ total }}</th><th colspan="{% if presc == 1 %}2{% endif %}"> </th></tr>\n
<tr><th colspan="3" style="text-align:right;">Total Tax Amount</th><th>{{ totaltax }}</th><th colspan="{% if presc == 1 %}2{% endif %}"> </th></tr>\n
{% set grandtotal = total + totaltax %}\n
<tr><th colspan="3" style="text-align:right;">Grand Total Amount</th><th>{{ grandtotal }}</th><th colspan="{% if presc == 1 %}2{% endif %}"> </th></tr>\n
\n
<tr><th colspan="2"><a href="{{ path('app_shop_products', {shopid:thisshopid}) }}">Go to Shop</a></th><th>{% if presc == 1 %}<a href="{{path('app_cart_my_prescription')}}">Prescriptions</a>{% endif %}</th><th colspan="2" style="text-align:center;">\n
{% if enablecheckoutlink == "1" %}\n
<a href="{{path('app_orders_cartid',{'cartid':cartid})}}">Checkout this cart</a>\n
{% endif %}\n
</th></tr>\n
</table>\n
</div>\n
\n
{% set presc = 0 %}\n
<!-- End Primary Color Bordered Table -->\n
</div>\n
{% endfor %}\n
\n
</div><!-- End Bordered Tabs -->\n
\n
{% else %}\n
No Carts Loaded. <a href="{{ path('homepage') }}">Continue Shopping</a>\n
{% endif %}\n
\n
\n
</div>\n
</div>\n
</div>\n
</div>\n
</section>\n
<!--\n
{% if cartid is not empty %}\n
<section class="section">\n
<div class="row">\n
<div class="col-lg-12">\n
<table>\n
</table>\n
</div>\n
<div class="col-lg-12">\n
<div class="card">\n
<table>\n
<tr><td style="text-align:right;" rowspan="5">\n
Grand Total : {{ gtotal }}\n
</td><td></td></tr>\n
<tr><td style="text-align:center;padding:10px;">\n
<a href="">Continue Shoping</a> <a href="{{path('app_orders_cartid',{'cartid':cartid})}}">Check Out All the carts</a>\n
</td></tr>\n
</table>\n
</div>\n
</div>\n
</div>\n
</section>\n
{% else %}\n
<a href="">Continue Shoping</a>\n
{% endif %}\n
-->\n
<script type="text/javascript">\n
function cartQtyAction(action,productid,shopid){\n
var productiddiv = 'qty'+productid;\n
var productquantity = document.getElementById(productiddiv).innerHTML;\n
\n
if(action == "plus")\n
productquantity = Number(productquantity) + 1;\n
if(action == "minus")\n
productquantity = Number(productquantity) - 1;\n
if(action == "delete")\n
productquantity = 0;\n
\n
let url = "{{path('app_cart_update_cart',{'shopid': 'shopidvalue','productid': 'productidvalue', 'productquantity': 'productquantityvalue'})}}";\n
url = url.replace('shopidvalue',''+shopid+'');\n
url = url.replace('productidvalue',''+productid+'');\n
url = url.replace('productquantityvalue',''+productquantity+'');\n
ajaxLoad(url, productiddiv, 'cartupdateloading'+productid+'-'+shopid);\n
setTimeout(function(){\n
cartReload(shopid);\n
},2500);\n
}\n
\n
function cartReload(shopid){\n
var resultdiv = 'shop'+shopid;\n
let url = "{{path('app_cart_load_shop_cart',{'shopid': 'shopidvalue'})}}";\n
url = url.replace('shopidvalue',''+shopid+'');\n
ajaxLoad(url, resultdiv, 'shoploading'+shopid);\n
}\n
</script>\n
\n
\n
{% endblock %}\n
"""
trace: {
/home/demodump/anuppu.in/templates/cart/index.html.twig:15 {
__TwigTemplate_514be94e1139817dfdf5d246341a6460->{closure:__TwigTemplate_514be94e1139817dfdf5d246341a6460::block_body():473} …
› {% if allCarts | length > 0 %}
› <!-- Bordered Tabs -->
› <ul class="nav nav-tabs nav-tabs-bordered" id="borderedTab" role="tablist">
}
/home/demodump/anuppu.in/var/cache/dev/twig/c7/c7846fc31e82a63f5d0284ed4f232cea.php:473 {
__TwigTemplate_514be94e1139817dfdf5d246341a6460->block_body(array $context, array $blocks = []): iterable …
› yield " (";
› yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, (isset($context["variant"]) || array_key_exists("variant", $context) ? $context["variant"] : (function () { throw new RuntimeError('Variable "variant" does not exist.', 112, $this->source); })()), "packvariantname", [], "array", false, false, false, 112), "html", null, true);
› yield ")</a></td>
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:431 {
Twig\Template->yieldBlock($name, array $context, array $blocks = [], $useBlocks = true, ?self $templateContext = null): iterable …
› try {
› yield from $template->$block($context, $blocks);
› } catch (Error $e) {
}
/home/demodump/anuppu.in/templates/site-base.html.twig:394 {
__TwigTemplate_dcc4686f75a4c6fbe7c69a99f6e72689->doDisplay(array $context, array $blocks = []): iterable …
› \r
› {% block body %}{% endblock %}\r
› \r
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:387 {
Twig\Template->yield(array $context, array $blocks = []): iterable …
› try {
› yield from $this->doDisplay($context, $blocks);
› } catch (Error $e) {
}
/home/demodump/anuppu.in/var/cache/dev/twig/c7/c7846fc31e82a63f5d0284ed4f232cea.php:54 {
__TwigTemplate_514be94e1139817dfdf5d246341a6460->doDisplay(array $context, array $blocks = []): iterable …
› $this->parent = $this->loadTemplate("site-base.html.twig", "cart/index.html.twig", 1);
› yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
›
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:387 {
Twig\Template->yield(array $context, array $blocks = []): iterable …
› try {
› yield from $this->doDisplay($context, $blocks);
› } catch (Error $e) {
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:343 {
Twig\Template->display(array $context, array $blocks = []): void …
› {
› foreach ($this->yield($context, $blocks) as $data) {
› echo $data;
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:358 {
Twig\Template->render(array $context): string …
› try {
› $this->display($context);
› } catch (\Throwable $e) {
}
/home/demodump/anuppu.in/vendor/twig/twig/src/TemplateWrapper.php:35 {
Twig\TemplateWrapper->render(array $context = []): string …
› {
› return $this->template->render($context);
› }
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Environment.php:320 {
Twig\Environment->render($name, array $context = []): string …
› {
› return $this->load($name)->render($context);
› }
}
/home/demodump/anuppu.in/vendor/symfony/framework-bundle/Controller/AbstractController.php:431 {
Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView(string $view, ?string $block, array $parameters, string $method): string …
›
› return $this->container->get('twig')->render($view, $parameters);
› }
}
/home/demodump/anuppu.in/vendor/symfony/framework-bundle/Controller/AbstractController.php:436 {
Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response …
› {
› $content = $this->doRenderView($view, $block, $parameters, $method);
› $response ??= new Response();
}
/home/demodump/anuppu.in/vendor/symfony/framework-bundle/Controller/AbstractController.php:250 {
Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render(string $view, array $parameters = [], ?Response $response = null): Response …
› {
› return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
› }
}
/home/demodump/anuppu.in/src/Controller/CartController.php:197 {
App\Controller\CartController->index(Request $request, EntityManagerInterface $entityManager, UrlGeneratorInterface $urlGenerator): Response …
› //dd($cartVariantList);
› return $this->render('cart/index.html.twig', [
› 'controller_name' => 'CartController',
}
/home/demodump/anuppu.in/vendor/symfony/http-kernel/HttpKernel.php:183 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› // call controller
› $response = $controller(...$arguments);
›
}
/home/demodump/anuppu.in/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/home/demodump/anuppu.in/vendor/symfony/http-kernel/Kernel.php:182 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
}
/home/demodump/anuppu.in/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/home/demodump/anuppu.in/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/demodump/anuppu.in/index.php:8 {
›
› require_once dirname(__DIR__).'/anuppu.in/vendor/autoload_runtime.php';
›
arguments: {
"/home/demodump/anuppu.in/vendor/autoload_runtime.php"
}
}
}
} |
| logger |
Symfony\Bridge\Monolog\Processor\DebugProcessor {#153
-records: [
8 => [
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.632+00:00"
"message" => "Matched route "{route}"."
"priority" => 200
"priorityName" => "INFO"
"context" => [
"route" => "app_cart"
"route_parameters" => [
"_route" => "app_cart"
"_controller" => "App\Controller\CartController::index"
]
"request_uri" => "https://www.anuppu.in/cart?p=cart"
"method" => "GET"
]
"channel" => "request"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Checking for authenticator support."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"firewall_name" => "main"
"authenticators" => 0
]
"channel" => "security"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.641+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.642+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.642+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.642+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.642+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "App\EventListener\TimezoneListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.642+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.642+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.680+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.680+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.681+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.681+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerGbx8dXM\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T14:26:34.681+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199194
"timestamp_rfc3339" => "2026-08-08T19:56:34.689+05:30"
"message" => "Connecting with parameters {params}"
"priority" => 200
"priorityName" => "INFO"
"context" => [
"params" => [
"use_savepoints" => true
"driver" => "pdo_mysql"
"idle_connection_ttl" => 600
"host" => "localhost"
"port" => 3306
"user" => "demodump_anuppu"
"password" => "<redacted>"
"driverOptions" => []
"defaultTableOptions" => []
"dbname" => "demodump_anuppu"
"serverVersion" => "10.6.20-MariaDB"
"charset" => "utf8mb4"
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.221+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
select * from cart\n
JOIN shop ON shop.shopid = cart.establishmentid \n
where cart.userid = '22270733'
"""
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.245+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => """
SELECT p1.shopid as shopid, p1.productid as productid, p1.productprice as productprice\n
FROM prodproductprice p1\n
WHERE p1.id = (\n
SELECT MAX(p2.id)\n
FROM prodproductprice p2\n
WHERE p2.shopid = p1.shopid AND p2.productid = p1.productid \n
) AND shopid IN ('8597665','8597665') AND productid IN ('400098936','266577626')
"""
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.264+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "select * from cartproductvariant where cartid = 'FbJAtnijjI4HR7HOHAhC'"
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.446+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT s0_.id AS id_0, s0_.shopid AS shopid_1, s0_.shopname AS shopname_2, s0_.shopaddressid AS shopaddressid_3, s0_.contactuserid AS contactuserid_4, s0_.contactname AS contactname_5, s0_.addedtime AS addedtime_6 FROM shop s0_ WHERE s0_.shopid IN (?, ?)"
"params" => [
1 => "8597665"
2 => "8597665"
]
"types" => [
1 => 2
2 => 2
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.477+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT s0_.id AS id_0, s0_.shopid AS shopid_1, s0_.shopproductid AS shopproductid_2, s0_.masterproductid AS masterproductid_3, s0_.shopproductname AS shopproductname_4, s0_.shopproductprice AS shopproductprice_5, s0_.shopproductdesc AS shopproductdesc_6, s0_.displayproduct AS displayproduct_7, s0_.stockout AS stockout_8 FROM shopproducts s0_ WHERE s0_.shopproductid IN (?, ?)"
"params" => [
1 => "400098936"
2 => "266577626"
]
"types" => [
1 => 2
2 => 2
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.490+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "select * from cartprescription where userid = '22270733' and establishmentid <> ''"
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.501+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "select * from shopsettings where shopid IN ('8597665') order by id asc"
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.502+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "select * from shopproductstax where shopid IN ('8597665')"
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.509+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "select * from shoporderingtime where shopid IN ('8597665')"
"params" => []
"types" => []
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.575+00:00"
"message" => "Uncaught PHP Exception Twig\Error\RuntimeError: "Variable "variant" does not exist." at index.html.twig line 112"
"priority" => 500
"priorityName" => "CRITICAL"
"context" => [
"exception" => Twig\Error\RuntimeError {#1245
#message: "Variable "variant" does not exist."
#code: 0
#file: "/home/demodump/anuppu.in/templates/cart/index.html.twig"
#line: 112
-lineno: 112
-name: "cart/index.html.twig"
-rawMessage: "Variable "variant" does not exist."
-sourcePath: "/home/demodump/anuppu.in/templates/cart/index.html.twig"
-sourceCode: """
{% extends 'site-base.html.twig' %}\n
\n
{% block title %} ANUPPU - Cart{% endblock %}\n
\n
{% block body %}\n
\n
<section class="section" id="productsearchsection">\n
<div class="row">\n
<div class="col-lg-12">\n
<div class="card">\n
<div class="card-body">\n
<h5 class="card-title">My Carts Page</h5>\n
\n
{% if allCarts | length > 0 %}\n
<!-- Bordered Tabs -->\n
<ul class="nav nav-tabs nav-tabs-bordered" id="borderedTab" role="tablist">\n
{% for shopName in shopNameArr %}\n
<li class="nav-item" role="presentation">\n
<button class="nav-link {% if loop.index == 1 %}active{% endif %}" id="home-tab" data-bs-toggle="tab" data-bs-target="#bordered-tab{{loop.index0}}" type="button" role="tab" aria-controls="home" aria-selected="true">{{shopName}} </button>\n
</li>\n
{% endfor %}\n
</ul>\n
<div class="tab-content pt-2" id="borderedTabContent">\n
{% set total = 0 %} {% set subtotal = 0 %} {% set total1 = 0 %} {% set gtotal = 0 %} {% set gtotal1 = 0 %}\n
{% set presc = 0 %}\n
{% for shopid1, thisEstb in allCarts %}\n
{% set total1 = 0 %}\n
{% if enablecheckoutlinkboolean[shopid1] is defined %}\n
{% set enablecheckoutlink = enablecheckoutlinkboolean[shopid1] %}\n
{% endif %}\n
<div class="tab-pane fade show {% if loop.index == 1 %} active {% endif %}" id="bordered-tab{{loop.index0}}" role="tabpanel" aria-labelledby="home-tab">\n
{% if prescription[shopid1] is defined %}\n
{% if prescription[shopid1] == "yes" %}\n
{% set presc = 1 %}\n
\t{% endif %}\n
{% endif %}\n
\n
<!-- Primary Color Bordered Table -->\n
{% set thisshopid = "" %}\n
<div id="shoploading{{shopid1}}" style="height:20px;"></div>\n
<div id="shop{{shopid1}}" style="overflow:scroll;">\n
<table class="table table-bordered border-primary">\n
<thead>\n
<tr>\n
<th scope="col">Sl.No.</th>\n
<th scope="col">Product Name</th>\n
<th scope="col">Product Price</th>\n
<th scope="col">Quantity</th>\n
<th scope="col">Sub Total</th>\n
</tr>\n
</thead>\n
<tbody>\n
{% set slno = 0 %}\n
\n
{% set totaltax = 0 %} {% set productTaxAmount = 0 %} {% set productTaxPercentage = 0 %}\n
{% set thisprodprice = 0 %}\n
{% for estbid, thisCart in thisEstb %}\n
{% set cartid = thisCart['cartid'] %}\n
{% set thisshopid = thisCart['shopid'] %}\n
{% if productTax[thisshopid][thisCart['productid']]['taxamount'] is defined %}\n
{% set productTaxAmount = productTax[thisshopid][thisCart['productid']]['taxamount'] %}\n
{% endif %}\n
{% if productTax[thisshopid][thisCart['productid']]['taxpercentage'] is defined %}\n
{% set productTaxPercentage = productTax[thisshopid][thisCart['productid']]['taxpercentage'] %}\n
{% endif %}\n
\n
{% if productPrice[thisCart['shopid']][thisCart['productid']] is defined %}\n
{% if productPrice[thisCart['shopid']][thisCart['productid']] != "" %}\n
{% set thisprodprice = productPrice[thisCart['shopid']][thisCart['productid']] %}\n
{% else %}\n
{% set thisprodprice = 0 %}\n
{% endif %}\n
{% else %}\n
{% set thisprodprice = 0 %}\n
{% endif %}\n
\n
{% set totaltax = totaltax + productTaxAmount %}\n
\n
{% if cartVariantList[cartid][thisshopid][thisCart['productid']] is defined %}\n
{% if cartVariantList[cartid][thisshopid][thisCart['productid']] is iterable %}\n
{% for variant in cartVariantList[cartid][thisshopid][thisCart['productid']] %}\n
\n
<tr id="row{{thisCart['productid']}}-{{thisCart['shopid']}}">\n
<td scope="row">{% set slno = slno + 1 %} {{ slno }}</td>\n
<td><a href="{{path('app_shop_product_details',{shopid:thisCart['shopid'],productid:thisCart['productid']})}}" target="_blank">{{thisCart['productname']}} ({{ variant['packvariantname'] }})</a></td>\n
<td><!-- {{thisprodprice}} --> {{ variant['packagevariantprice'] }}</td>\n
<td>\n
<button class="btn btn-primary" onClick="cartQtyAction('delete','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-trash"></i></button>\n
{% if thisCart['stock'] == "0" %}\n
<!-- {{thisCart['quantity']}} -->\n
<button class="btn btn-primary" onClick="cartQtyAction('minus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-dash"></i></button>\n
<button id="qty{{thisCart['productid']}}" class="btn btn-primary" style="background-color:#FFFFFF;color:#0d6efd;">{{ variant['variantquantity'] }}</button>\n
<button class="btn btn-primary" onClick="cartQtyAction('plus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-plus"></i></button>\n
<div id="cartupdateloading{{thisCart['productid']}}-{{thisCart['shopid']}}"></div>\n
{% else %}\n
<span style="color:red;">Out of Stock</span>\n
{% endif %}\n
</td>\n
{% set price = variant['packagevariantprice'] %}\n
{% set quantity = variant['variantquantity'] %}\n
<td>{% set subtotal = (price * quantity) %} {{subtotal}} \n
{% set total1 = (total1 + subtotal) %} </td>\n
</tr>\n
{% set total = total1 %} \n
{% endfor %}\n
{% endif %}\n
{% set gtotal = gtotal + total %} \n
{% else %}\n
\n
<tr id="row{{thisCart['productid']}}-{{thisCart['shopid']}}">\n
<td scope="row">{% set slno = slno + 1 %} {{ slno }}</td>\n
<td><a href="{{path('app_shop_product_details',{shopid:thisCart['shopid'],productid:thisCart['productid']})}}" target="_blank">{{thisCart['productname']}} ({{ variant['packvariantname'] }})</a></td>\n
<td>{{thisprodprice}} </td>\n
<td>\n
<button class="btn btn-primary" onClick="cartQtyAction('delete','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-trash"></i></button>\n
{% if thisCart['stock'] == "0" %}\n
<!-- {{thisCart['quantity']}} -->\n
<button class="btn btn-primary" onClick="cartQtyAction('minus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-dash"></i></button>\n
<button id="qty{{thisCart['productid']}}" class="btn btn-primary" style="background-color:#FFFFFF;color:#0d6efd;">{{thisCart['quantity']}}</button>\n
<button class="btn btn-primary" onClick="cartQtyAction('plus','{{thisCart['productid']}}','{{thisCart['shopid']}}')"><i class="bi bi-plus"></i></button>\n
<div id="cartupdateloading{{thisCart['productid']}}-{{thisCart['shopid']}}"></div>\n
{% else %}\n
<span style="color:red;">Out of Stock</span>\n
{% endif %}\n
</td>\n
{% set price = variant['packagevariantprice'] %}\n
{% set quantity = variant['variantquantity'] %}\n
<td>{% set subtotal = (price * quantity) %} {{subtotal}} \n
{% set total1 = (total1 + subtotal) %} </td>\n
</tr>\n
\n
{% endif %}\n
{% endfor %}\n
\n
</tbody>\n
<tr><th colspan="3" style="text-align:right;">Total</th><th>{{ total }}</th><th colspan="{% if presc == 1 %}2{% endif %}"> </th></tr>\n
<tr><th colspan="3" style="text-align:right;">Total Tax Amount</th><th>{{ totaltax }}</th><th colspan="{% if presc == 1 %}2{% endif %}"> </th></tr>\n
{% set grandtotal = total + totaltax %}\n
<tr><th colspan="3" style="text-align:right;">Grand Total Amount</th><th>{{ grandtotal }}</th><th colspan="{% if presc == 1 %}2{% endif %}"> </th></tr>\n
\n
<tr><th colspan="2"><a href="{{ path('app_shop_products', {shopid:thisshopid}) }}">Go to Shop</a></th><th>{% if presc == 1 %}<a href="{{path('app_cart_my_prescription')}}">Prescriptions</a>{% endif %}</th><th colspan="2" style="text-align:center;">\n
{% if enablecheckoutlink == "1" %}\n
<a href="{{path('app_orders_cartid',{'cartid':cartid})}}">Checkout this cart</a>\n
{% endif %}\n
</th></tr>\n
</table>\n
</div>\n
\n
{% set presc = 0 %}\n
<!-- End Primary Color Bordered Table -->\n
</div>\n
{% endfor %}\n
\n
</div><!-- End Bordered Tabs -->\n
\n
{% else %}\n
No Carts Loaded. <a href="{{ path('homepage') }}">Continue Shopping</a>\n
{% endif %}\n
\n
\n
</div>\n
</div>\n
</div>\n
</div>\n
</section>\n
<!--\n
{% if cartid is not empty %}\n
<section class="section">\n
<div class="row">\n
<div class="col-lg-12">\n
<table>\n
</table>\n
</div>\n
<div class="col-lg-12">\n
<div class="card">\n
<table>\n
<tr><td style="text-align:right;" rowspan="5">\n
Grand Total : {{ gtotal }}\n
</td><td></td></tr>\n
<tr><td style="text-align:center;padding:10px;">\n
<a href="">Continue Shoping</a> <a href="{{path('app_orders_cartid',{'cartid':cartid})}}">Check Out All the carts</a>\n
</td></tr>\n
</table>\n
</div>\n
</div>\n
</div>\n
</section>\n
{% else %}\n
<a href="">Continue Shoping</a>\n
{% endif %}\n
-->\n
<script type="text/javascript">\n
function cartQtyAction(action,productid,shopid){\n
var productiddiv = 'qty'+productid;\n
var productquantity = document.getElementById(productiddiv).innerHTML;\n
\n
if(action == "plus")\n
productquantity = Number(productquantity) + 1;\n
if(action == "minus")\n
productquantity = Number(productquantity) - 1;\n
if(action == "delete")\n
productquantity = 0;\n
\n
let url = "{{path('app_cart_update_cart',{'shopid': 'shopidvalue','productid': 'productidvalue', 'productquantity': 'productquantityvalue'})}}";\n
url = url.replace('shopidvalue',''+shopid+'');\n
url = url.replace('productidvalue',''+productid+'');\n
url = url.replace('productquantityvalue',''+productquantity+'');\n
ajaxLoad(url, productiddiv, 'cartupdateloading'+productid+'-'+shopid);\n
setTimeout(function(){\n
cartReload(shopid);\n
},2500);\n
}\n
\n
function cartReload(shopid){\n
var resultdiv = 'shop'+shopid;\n
let url = "{{path('app_cart_load_shop_cart',{'shopid': 'shopidvalue'})}}";\n
url = url.replace('shopidvalue',''+shopid+'');\n
ajaxLoad(url, resultdiv, 'shoploading'+shopid);\n
}\n
</script>\n
\n
\n
{% endblock %}\n
"""
trace: {
/home/demodump/anuppu.in/templates/cart/index.html.twig:15 {
__TwigTemplate_514be94e1139817dfdf5d246341a6460->{closure:__TwigTemplate_514be94e1139817dfdf5d246341a6460::block_body():473} …
› {% if allCarts | length > 0 %}
› <!-- Bordered Tabs -->
› <ul class="nav nav-tabs nav-tabs-bordered" id="borderedTab" role="tablist">
}
/home/demodump/anuppu.in/var/cache/dev/twig/c7/c7846fc31e82a63f5d0284ed4f232cea.php:473 {
__TwigTemplate_514be94e1139817dfdf5d246341a6460->block_body(array $context, array $blocks = []): iterable …
› yield " (";
› yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, (isset($context["variant"]) || array_key_exists("variant", $context) ? $context["variant"] : (function () { throw new RuntimeError('Variable "variant" does not exist.', 112, $this->source); })()), "packvariantname", [], "array", false, false, false, 112), "html", null, true);
› yield ")</a></td>
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:431 {
Twig\Template->yieldBlock($name, array $context, array $blocks = [], $useBlocks = true, ?self $templateContext = null): iterable …
› try {
› yield from $template->$block($context, $blocks);
› } catch (Error $e) {
}
/home/demodump/anuppu.in/templates/site-base.html.twig:394 {
__TwigTemplate_dcc4686f75a4c6fbe7c69a99f6e72689->doDisplay(array $context, array $blocks = []): iterable …
› \r
› {% block body %}{% endblock %}\r
› \r
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:387 {
Twig\Template->yield(array $context, array $blocks = []): iterable …
› try {
› yield from $this->doDisplay($context, $blocks);
› } catch (Error $e) {
}
/home/demodump/anuppu.in/var/cache/dev/twig/c7/c7846fc31e82a63f5d0284ed4f232cea.php:54 {
__TwigTemplate_514be94e1139817dfdf5d246341a6460->doDisplay(array $context, array $blocks = []): iterable …
› $this->parent = $this->loadTemplate("site-base.html.twig", "cart/index.html.twig", 1);
› yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
›
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:387 {
Twig\Template->yield(array $context, array $blocks = []): iterable …
› try {
› yield from $this->doDisplay($context, $blocks);
› } catch (Error $e) {
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:343 {
Twig\Template->display(array $context, array $blocks = []): void …
› {
› foreach ($this->yield($context, $blocks) as $data) {
› echo $data;
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Template.php:358 {
Twig\Template->render(array $context): string …
› try {
› $this->display($context);
› } catch (\Throwable $e) {
}
/home/demodump/anuppu.in/vendor/twig/twig/src/TemplateWrapper.php:35 {
Twig\TemplateWrapper->render(array $context = []): string …
› {
› return $this->template->render($context);
› }
}
/home/demodump/anuppu.in/vendor/twig/twig/src/Environment.php:320 {
Twig\Environment->render($name, array $context = []): string …
› {
› return $this->load($name)->render($context);
› }
}
/home/demodump/anuppu.in/vendor/symfony/framework-bundle/Controller/AbstractController.php:431 {
Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView(string $view, ?string $block, array $parameters, string $method): string …
›
› return $this->container->get('twig')->render($view, $parameters);
› }
}
/home/demodump/anuppu.in/vendor/symfony/framework-bundle/Controller/AbstractController.php:436 {
Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response …
› {
› $content = $this->doRenderView($view, $block, $parameters, $method);
› $response ??= new Response();
}
/home/demodump/anuppu.in/vendor/symfony/framework-bundle/Controller/AbstractController.php:250 {
Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render(string $view, array $parameters = [], ?Response $response = null): Response …
› {
› return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
› }
}
/home/demodump/anuppu.in/src/Controller/CartController.php:197 {
App\Controller\CartController->index(Request $request, EntityManagerInterface $entityManager, UrlGeneratorInterface $urlGenerator): Response …
› //dd($cartVariantList);
› return $this->render('cart/index.html.twig', [
› 'controller_name' => 'CartController',
}
/home/demodump/anuppu.in/vendor/symfony/http-kernel/HttpKernel.php:183 {
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
› // call controller
› $response = $controller(...$arguments);
›
}
/home/demodump/anuppu.in/vendor/symfony/http-kernel/HttpKernel.php:76 {
Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $response = $this->handleRaw($request, $type);
› } catch (\Throwable $e) {
}
/home/demodump/anuppu.in/vendor/symfony/http-kernel/Kernel.php:182 {
Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
› try {
› return $this->getHttpKernel()->handle($request, $type, $catch);
› } finally {
}
/home/demodump/anuppu.in/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
› {
› $response = $this->kernel->handle($this->request);
›
}
/home/demodump/anuppu.in/vendor/autoload_runtime.php:29 {
require_once …
› ->getRunner($app)
› ->run()
› );
}
/home/demodump/anuppu.in/index.php:8 {
›
› require_once dirname(__DIR__).'/anuppu.in/vendor/autoload_runtime.php';
›
arguments: {
"/home/demodump/anuppu.in/vendor/autoload_runtime.php"
}
}
}
}
]
"channel" => "request"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Listener "{listener}" stopped propagation of the event "{event}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.exception"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.010+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.010+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.010+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.010+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.010+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199196
"timestamp_rfc3339" => "2026-08-08T14:26:36.011+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
919 => [
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.538+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "App\EventListener\TimezoneListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.539+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.539+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.542+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.542+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.542+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.542+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerGbx8dXM\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.542+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T19:56:35.547+05:30"
"message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"sql" => "SELECT c0_.id AS id_0, c0_.userid AS userid_1, c0_.cartid AS cartid_2, c0_.establishmentid AS establishmentid_3, c0_.productid AS productid_4, c0_.productvariantid AS productvariantid_5, c0_.productname AS productname_6, c0_.productcartprice AS productcartprice_7, c0_.quantity AS quantity_8, c0_.engravetext AS engravetext_9, c0_.addedtime AS addedtime_10 FROM cart c0_ WHERE c0_.userid = ? GROUP BY c0_.establishmentid"
"params" => [
1 => "22270733"
]
"types" => [
1 => 2
]
]
"channel" => "doctrine"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.563+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.563+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.563+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.563+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.564+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
1267 => [
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.623+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.request"
"listener" => "App\EventListener\TimezoneListener::onKernelRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.667+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.667+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.668+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.668+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.668+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.668+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "ContainerGbx8dXM\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.668+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.controller_arguments"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.949+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.response"
"listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
]
"channel" => "event"
]
[
"timestamp" => 1786199195
"timestamp_rfc3339" => "2026-08-08T14:26:35.950+00:00"
"message" => "Notified event "{event}" to listener "{listener}"."
"priority" => 100
"priorityName" => "DEBUG"
"context" => [
"event" => "kernel.finish_request"
"listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
]
"channel" => "event"
]
]
]
-errorCount: [
8 => 1
919 => 0
1267 => 0
]
-requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#164 …}
} |