Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
if ($referer = $request->headers->get('referer')) {$message .= sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/html/perseo/httpdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {ini_set('date.timezone', 'Europe/Madrid');ini_set('upload_max_filesize', '20M');ini_set('post_max_size', '20M');
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 106)
*/public function matchRequest(Request $request){$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 257)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 111)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/html/perseo/httpdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {ini_set('date.timezone', 'Europe/Madrid');ini_set('upload_max_filesize', '20M');ini_set('post_max_size', '20M');
Logs 4
| Level | Channel | Message |
|---|---|---|
| INFO 08:49:44 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://perseo.dev3.prometeoinnovations.com/_profiler/latest?ip=216.73.216.57",
"method": "GET"
}
|
| DEBUG 08:49:44 | app | Start onKernelRequest App\EventListener\KernelRequestListener |
| INFO 08:49:44 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"host": "127.0.0.1",
"port": 3306,
"user": "perseo",
"password": "<redacted>",
"driverOptions": {
"1002": "SET sql_mode=(SELECT REPLACE(@@sql_mode, \"ONLY_FULL_GROUP_BY\", \"\"))"
},
"defaultTableOptions": {
"collation": "utf8mb4_unicode_ci"
},
"dbname": "perseo",
"serverVersion": "5.7",
"charset": "utf8mb4"
}
}
|
| DEBUG 08:49:44 | doctrine | Beginning transaction |
| DEBUG 08:49:44 | doctrine |
Executing statement: INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types}) {
"sql": "INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
"params": {
"1": "anonymous",
"2": null,
"3": "_profiler",
"4": null,
"5": "GET",
"6": "{\"host\":[\"perseo.dev3.prometeoinnovations.com\"],\"accept-encoding\":[\"gzip, br, zstd, deflate\"],\"user-agent\":[\"Mozilla\\/5.0 AppleWebKit\\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\\/1.0; +claudebot@anthropic.com)\"],\"accept\":[\"*\\/*\"],\"x-php-ob-level\":[\"1\"]}",
"7": "[]",
"8": "{\"ip\":\"216.73.216.57\"}",
"9": null,
"10": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"11": "perseo.dev3.prometeoinnovations.com",
"12": "87.106.124.217",
"13": "216.73.216.57",
"14": null,
"15": "2026-09-01 08:49:44",
"16": "2026-09-01 08:49:44"
},
"types": {
"1": 2,
"2": 2,
"3": 2,
"4": 2,
"5": 2,
"6": 2,
"7": 2,
"8": 2,
"9": 2,
"10": 2,
"11": 2,
"12": 2,
"13": 2,
"14": 2,
"15": 2,
"16": 2
}
}
|
| DEBUG 08:49:44 | doctrine | Rolling back transaction |
| ERROR 08:49:44 | app | ERROR H-6a9675880f7f9: An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'perseo.log' doesn't exist file /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51. Trace: #0 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1976): Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert() #1 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1918): Doctrine\DBAL\Connection->handleDriverException() #2 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(194): Doctrine\DBAL\Connection->convertExceptionDuringQuery() #3 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(249): Doctrine\DBAL\Statement->execute() #4 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php(288): Doctrine\DBAL\Statement->executeStatement() #5 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(1191): Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts() #6 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(451): Doctrine\ORM\UnitOfWork->executeInserts() #7 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/EntityManager.php(414): Doctrine\ORM\UnitOfWork->commit() #8 /var/www/html/perseo/httpdocs/var/cache/dev/ContainerYUXpYDx/EntityManager_9a5be93.php(136): Doctrine\ORM\EntityManager->flush() #9 /var/www/html/perseo/httpdocs/src/EventListener/KernelRequestListener.php(51): ContainerYUXpYDx\EntityManager_9a5be93->flush() #10 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php(118): App\EventListener\KernelRequestListener->onKernelRequest() #11 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(230): Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() #12 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(59): Symfony\Component\EventDispatcher\EventDispatcher->callListeners() #13 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php(154): Symfony\Component\EventDispatcher\EventDispatcher->dispatch() #14 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(139): Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() #15 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #16 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Kernel.php(202): Symfony\Component\HttpKernel\HttpKernel->handle() #17 /var/www/html/perseo/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php(35): Symfony\Component\HttpKernel\Kernel->handle() #18 /var/www/html/perseo/httpdocs/vendor/autoload_runtime.php(35): Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() #19 /var/www/html/perseo/httpdocs/public/index.php(5): require_once('...') #20 {main} |
| DEBUG 08:49:44 | app | End onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\MultipartRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\MultipartRequestSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Sonata\TranslationBundle\EventSubscriber\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sonata\\TranslationBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\RequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\RequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\KernelRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\KernelRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\UserSessionTracker::onRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\UserSessionTracker::onRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:49:44 | 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 08:49:44 | app | Start onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | doctrine | Beginning transaction |
| DEBUG 08:49:44 | doctrine |
Executing statement: INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types}) {
"sql": "INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
"params": {
"1": "anonymous",
"2": null,
"3": null,
"4": "",
"5": "GET",
"6": "{\"host\":[\"perseo.dev3.prometeoinnovations.com\"],\"user-agent\":[\"Mozilla\\/5.0 AppleWebKit\\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\\/1.0; +claudebot@anthropic.com)\"],\"accept\":[\"*\\/*\"],\"accept-language\":[\"en-us,en;q=0.5\"],\"accept-charset\":[\"ISO-8859-1,utf-8;q=0.7,*;q=0.7\"],\"accept-encoding\":[\"gzip, br, zstd, deflate\"],\"forwarded\":[\"for=\\\"216.73.216.57\\\";host=\\\"perseo.dev3.prometeoinnovations.com\\\";proto=https\"],\"x-forwarded-for\":[\"216.73.216.57\"],\"x-php-ob-level\":[\"2\"]}",
"7": "[]",
"8": "{\"_path\":\"_format=html&_locale=es&_controller=web_profiler.controller.exception_panel%3A%3Astylesheet\"}",
"9": null,
"10": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"11": "perseo.dev3.prometeoinnovations.com",
"12": "87.106.124.217",
"13": "127.0.0.1",
"14": null,
"15": "2026-09-01 08:49:44",
"16": "2026-09-01 08:49:44"
},
"types": {
"1": 2,
"2": 2,
"3": 2,
"4": 2,
"5": 2,
"6": 2,
"7": 2,
"8": 2,
"9": 2,
"10": 2,
"11": 2,
"12": 2,
"13": 2,
"14": 2,
"15": 2,
"16": 2
}
}
|
| DEBUG 08:49:44 | doctrine | Rolling back transaction |
| ERROR 08:49:44 | app | ERROR H-6a967588159fb: An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'perseo.log' doesn't exist file /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51. Trace: #0 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1976): Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert() #1 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1918): Doctrine\DBAL\Connection->handleDriverException() #2 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(194): Doctrine\DBAL\Connection->convertExceptionDuringQuery() #3 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(249): Doctrine\DBAL\Statement->execute() #4 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php(288): Doctrine\DBAL\Statement->executeStatement() #5 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(1191): Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts() #6 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(451): Doctrine\ORM\UnitOfWork->executeInserts() #7 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/EntityManager.php(414): Doctrine\ORM\UnitOfWork->commit() #8 /var/www/html/perseo/httpdocs/var/cache/dev/ContainerYUXpYDx/EntityManager_9a5be93.php(136): Doctrine\ORM\EntityManager->flush() #9 /var/www/html/perseo/httpdocs/src/EventListener/KernelRequestListener.php(51): ContainerYUXpYDx\EntityManager_9a5be93->flush() #10 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php(118): App\EventListener\KernelRequestListener->onKernelRequest() #11 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(230): Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() #12 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(59): Symfony\Component\EventDispatcher\EventDispatcher->callListeners() #13 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php(154): Symfony\Component\EventDispatcher\EventDispatcher->dispatch() #14 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(139): Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() #15 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #16 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php(86): Symfony\Component\HttpKernel\HttpKernel->handle() #17 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php(80): Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle() #18 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Fragment/FragmentHandler.php(85): Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render() #19 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php(49): Symfony\Component\HttpKernel\Fragment\FragmentHandler->render() #20 /var/www/html/perseo/httpdocs/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php(46): Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render() #21 /var/www/html/perseo/httpdocs/var/cache/dev/twig/0b/0b52a711c5e663d2e99539edfc117126.php(76): Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment() #22 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(171): __TwigTemplate_bb0fbb7a151a62544afa2d899a1433b3->block_head() #23 /var/www/html/perseo/httpdocs/var/cache/dev/twig/32/3298eae44f7c474389c39d8bff2e2878.php(63): Twig\Template->displayBlock() #24 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_1176ebbf463047cf16f74fa7bd72738f->doDisplay() #25 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #26 /var/www/html/perseo/httpdocs/var/cache/dev/twig/1a/1aa7318e28947cf49f9520826e476d4b.php(50): Twig\Template->display() #27 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_2a9ea73a59d4b25661d2a03b5478c304->doDisplay() #28 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #29 /var/www/html/perseo/httpdocs/var/cache/dev/twig/0b/0b52a711c5e663d2e99539edfc117126.php(50): Twig\Template->display() #30 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_bb0fbb7a151a62544afa2d899a1433b3->doDisplay() #31 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #32 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(379): Twig\Template->display() #33 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/TemplateWrapper.php(38): Twig\Template->render() #34 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Environment.php(280): Twig\TemplateWrapper->render() #35 /var/www/html/perseo/httpdocs/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php(387): Twig\Environment->render() #36 /var/www/html/perseo/httpdocs/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php(109): Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->renderWithCspNonces() #37 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(163): Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->panelAction() #38 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #39 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Kernel.php(202): Symfony\Component\HttpKernel\HttpKernel->handle() #40 /var/www/html/perseo/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php(35): Symfony\Component\HttpKernel\Kernel->handle() #41 /var/www/html/perseo/httpdocs/vendor/autoload_runtime.php(35): Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() #42 /var/www/html/perseo/httpdocs/public/index.php(5): require_once('...') #43 {main} |
| DEBUG 08:49:44 | app | End onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\MultipartRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\MultipartRequestSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Sonata\TranslationBundle\EventSubscriber\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sonata\\TranslationBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\RequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\RequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\KernelRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\KernelRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\UserSessionTracker::onRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\UserSessionTracker::onRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:49:44 | 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 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "App\EventSubscriber\DeferReadmoreScriptSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "App\\EventSubscriber\\DeferReadmoreScriptSubscriber::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | app | Start onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | doctrine | Beginning transaction |
| DEBUG 08:49:44 | doctrine |
Executing statement: INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types}) {
"sql": "INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
"params": {
"1": "anonymous",
"2": null,
"3": null,
"4": "",
"5": "GET",
"6": "{\"host\":[\"perseo.dev3.prometeoinnovations.com\"],\"user-agent\":[\"Mozilla\\/5.0 AppleWebKit\\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\\/1.0; +claudebot@anthropic.com)\"],\"accept\":[\"*\\/*\"],\"accept-language\":[\"en-us,en;q=0.5\"],\"accept-charset\":[\"ISO-8859-1,utf-8;q=0.7,*;q=0.7\"],\"accept-encoding\":[\"gzip, br, zstd, deflate\"],\"forwarded\":[\"for=\\\"216.73.216.57\\\";host=\\\"perseo.dev3.prometeoinnovations.com\\\";proto=https\"],\"x-forwarded-for\":[\"216.73.216.57\"],\"x-php-ob-level\":[\"2\"]}",
"7": "[]",
"8": "{\"ip\":\"216.73.216.57\",\"_path\":\"_format=html&_locale=es&_controller=web_profiler.controller.profiler%3A%3AsearchBarAction\"}",
"9": null,
"10": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"11": "perseo.dev3.prometeoinnovations.com",
"12": "87.106.124.217",
"13": "127.0.0.1",
"14": null,
"15": "2026-09-01 08:49:44",
"16": "2026-09-01 08:49:44"
},
"types": {
"1": 2,
"2": 2,
"3": 2,
"4": 2,
"5": 2,
"6": 2,
"7": 2,
"8": 2,
"9": 2,
"10": 2,
"11": 2,
"12": 2,
"13": 2,
"14": 2,
"15": 2,
"16": 2
}
}
|
| DEBUG 08:49:44 | doctrine | Rolling back transaction |
| ERROR 08:49:44 | app | ERROR H-6a96758817add: An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'perseo.log' doesn't exist file /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51. Trace: #0 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1976): Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert() #1 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1918): Doctrine\DBAL\Connection->handleDriverException() #2 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(194): Doctrine\DBAL\Connection->convertExceptionDuringQuery() #3 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(249): Doctrine\DBAL\Statement->execute() #4 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php(288): Doctrine\DBAL\Statement->executeStatement() #5 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(1191): Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts() #6 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(451): Doctrine\ORM\UnitOfWork->executeInserts() #7 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/EntityManager.php(414): Doctrine\ORM\UnitOfWork->commit() #8 /var/www/html/perseo/httpdocs/var/cache/dev/ContainerYUXpYDx/EntityManager_9a5be93.php(136): Doctrine\ORM\EntityManager->flush() #9 /var/www/html/perseo/httpdocs/src/EventListener/KernelRequestListener.php(51): ContainerYUXpYDx\EntityManager_9a5be93->flush() #10 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php(118): App\EventListener\KernelRequestListener->onKernelRequest() #11 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(230): Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() #12 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(59): Symfony\Component\EventDispatcher\EventDispatcher->callListeners() #13 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php(154): Symfony\Component\EventDispatcher\EventDispatcher->dispatch() #14 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(139): Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() #15 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #16 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php(86): Symfony\Component\HttpKernel\HttpKernel->handle() #17 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php(80): Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle() #18 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Fragment/FragmentHandler.php(85): Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render() #19 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php(49): Symfony\Component\HttpKernel\Fragment\FragmentHandler->render() #20 /var/www/html/perseo/httpdocs/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php(46): Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render() #21 /var/www/html/perseo/httpdocs/var/cache/dev/twig/1a/1aa7318e28947cf49f9520826e476d4b.php(116): Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment() #22 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(171): __TwigTemplate_2a9ea73a59d4b25661d2a03b5478c304->block_body() #23 /var/www/html/perseo/httpdocs/var/cache/dev/twig/32/3298eae44f7c474389c39d8bff2e2878.php(91): Twig\Template->displayBlock() #24 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_1176ebbf463047cf16f74fa7bd72738f->doDisplay() #25 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #26 /var/www/html/perseo/httpdocs/var/cache/dev/twig/1a/1aa7318e28947cf49f9520826e476d4b.php(50): Twig\Template->display() #27 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_2a9ea73a59d4b25661d2a03b5478c304->doDisplay() #28 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #29 /var/www/html/perseo/httpdocs/var/cache/dev/twig/0b/0b52a711c5e663d2e99539edfc117126.php(50): Twig\Template->display() #30 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_bb0fbb7a151a62544afa2d899a1433b3->doDisplay() #31 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #32 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(379): Twig\Template->display() #33 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/TemplateWrapper.php(38): Twig\Template->render() #34 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Environment.php(280): Twig\TemplateWrapper->render() #35 /var/www/html/perseo/httpdocs/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php(387): Twig\Environment->render() #36 /var/www/html/perseo/httpdocs/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php(109): Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->renderWithCspNonces() #37 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(163): Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->panelAction() #38 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #39 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Kernel.php(202): Symfony\Component\HttpKernel\HttpKernel->handle() #40 /var/www/html/perseo/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php(35): Symfony\Component\HttpKernel\Kernel->handle() #41 /var/www/html/perseo/httpdocs/vendor/autoload_runtime.php(35): Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() #42 /var/www/html/perseo/httpdocs/public/index.php(5): require_once('...') #43 {main} |
| DEBUG 08:49:44 | app | End onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\MultipartRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\MultipartRequestSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Sonata\TranslationBundle\EventSubscriber\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sonata\\TranslationBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\RequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\RequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\KernelRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\KernelRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\UserSessionTracker::onRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\UserSessionTracker::onRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:49:44 | 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 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "App\EventSubscriber\DeferReadmoreScriptSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "App\\EventSubscriber\\DeferReadmoreScriptSubscriber::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 08:49:44 | app | Start onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | doctrine | Beginning transaction |
| DEBUG 08:49:44 | doctrine |
Executing statement: INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (parameters: {params}, types: {types}) {
"sql": "INSERT INTO perseo.log (user, roles, webservice, uri, method, headers, request, query, referer, user_agent, server_name, server_addr, remote_addr, deleted_at, updated_at, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
"params": {
"1": "anonymous",
"2": null,
"3": null,
"4": "",
"5": "GET",
"6": "{\"host\":[\"perseo.dev3.prometeoinnovations.com\"],\"user-agent\":[\"Mozilla\\/5.0 AppleWebKit\\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\\/1.0; +claudebot@anthropic.com)\"],\"accept\":[\"*\\/*\"],\"accept-language\":[\"en-us,en;q=0.5\"],\"accept-charset\":[\"ISO-8859-1,utf-8;q=0.7,*;q=0.7\"],\"accept-encoding\":[\"gzip, br, zstd, deflate\"],\"forwarded\":[\"for=\\\"216.73.216.57\\\";host=\\\"perseo.dev3.prometeoinnovations.com\\\";proto=https\"],\"x-forwarded-for\":[\"216.73.216.57\"],\"x-php-ob-level\":[\"2\"]}",
"7": "[]",
"8": "{\"_path\":\"_format=html&_locale=es&_controller=web_profiler.controller.exception_panel%3A%3Abody\"}",
"9": null,
"10": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)",
"11": "perseo.dev3.prometeoinnovations.com",
"12": "87.106.124.217",
"13": "127.0.0.1",
"14": null,
"15": "2026-09-01 08:49:44",
"16": "2026-09-01 08:49:44"
},
"types": {
"1": 2,
"2": 2,
"3": 2,
"4": 2,
"5": 2,
"6": 2,
"7": 2,
"8": 2,
"9": 2,
"10": 2,
"11": 2,
"12": 2,
"13": 2,
"14": 2,
"15": 2,
"16": 2
}
}
|
| DEBUG 08:49:44 | doctrine | Rolling back transaction |
| ERROR 08:49:44 | app | ERROR H-6a967588207f8: An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'perseo.log' doesn't exist file /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51. Trace: #0 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1976): Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert() #1 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Connection.php(1918): Doctrine\DBAL\Connection->handleDriverException() #2 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(194): Doctrine\DBAL\Connection->convertExceptionDuringQuery() #3 /var/www/html/perseo/httpdocs/vendor/doctrine/dbal/src/Statement.php(249): Doctrine\DBAL\Statement->execute() #4 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php(288): Doctrine\DBAL\Statement->executeStatement() #5 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(1191): Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts() #6 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/UnitOfWork.php(451): Doctrine\ORM\UnitOfWork->executeInserts() #7 /var/www/html/perseo/httpdocs/vendor/doctrine/orm/src/EntityManager.php(414): Doctrine\ORM\UnitOfWork->commit() #8 /var/www/html/perseo/httpdocs/var/cache/dev/ContainerYUXpYDx/EntityManager_9a5be93.php(136): Doctrine\ORM\EntityManager->flush() #9 /var/www/html/perseo/httpdocs/src/EventListener/KernelRequestListener.php(51): ContainerYUXpYDx\EntityManager_9a5be93->flush() #10 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php(118): App\EventListener\KernelRequestListener->onKernelRequest() #11 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(230): Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() #12 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php(59): Symfony\Component\EventDispatcher\EventDispatcher->callListeners() #13 /var/www/html/perseo/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php(154): Symfony\Component\EventDispatcher\EventDispatcher->dispatch() #14 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(139): Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() #15 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #16 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php(86): Symfony\Component\HttpKernel\HttpKernel->handle() #17 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php(80): Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle() #18 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Fragment/FragmentHandler.php(85): Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render() #19 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php(49): Symfony\Component\HttpKernel\Fragment\FragmentHandler->render() #20 /var/www/html/perseo/httpdocs/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php(46): Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render() #21 /var/www/html/perseo/httpdocs/var/cache/dev/twig/0b/0b52a711c5e663d2e99539edfc117126.php(163): Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment() #22 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(171): __TwigTemplate_bb0fbb7a151a62544afa2d899a1433b3->block_panel() #23 /var/www/html/perseo/httpdocs/var/cache/dev/twig/1a/1aa7318e28947cf49f9520826e476d4b.php(214): Twig\Template->displayBlock() #24 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(171): __TwigTemplate_2a9ea73a59d4b25661d2a03b5478c304->block_body() #25 /var/www/html/perseo/httpdocs/var/cache/dev/twig/32/3298eae44f7c474389c39d8bff2e2878.php(91): Twig\Template->displayBlock() #26 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_1176ebbf463047cf16f74fa7bd72738f->doDisplay() #27 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #28 /var/www/html/perseo/httpdocs/var/cache/dev/twig/1a/1aa7318e28947cf49f9520826e476d4b.php(50): Twig\Template->display() #29 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_2a9ea73a59d4b25661d2a03b5478c304->doDisplay() #30 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #31 /var/www/html/perseo/httpdocs/var/cache/dev/twig/0b/0b52a711c5e663d2e99539edfc117126.php(50): Twig\Template->display() #32 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(394): __TwigTemplate_bb0fbb7a151a62544afa2d899a1433b3->doDisplay() #33 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(367): Twig\Template->displayWithErrorHandling() #34 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Template.php(379): Twig\Template->display() #35 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/TemplateWrapper.php(38): Twig\Template->render() #36 /var/www/html/perseo/httpdocs/vendor/twig/twig/src/Environment.php(280): Twig\TemplateWrapper->render() #37 /var/www/html/perseo/httpdocs/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php(387): Twig\Environment->render() #38 /var/www/html/perseo/httpdocs/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php(109): Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->renderWithCspNonces() #39 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(163): Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->panelAction() #40 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/HttpKernel.php(75): Symfony\Component\HttpKernel\HttpKernel->handleRaw() #41 /var/www/html/perseo/httpdocs/vendor/symfony/http-kernel/Kernel.php(202): Symfony\Component\HttpKernel\HttpKernel->handle() #42 /var/www/html/perseo/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php(35): Symfony\Component\HttpKernel\Kernel->handle() #43 /var/www/html/perseo/httpdocs/vendor/autoload_runtime.php(35): Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() #44 /var/www/html/perseo/httpdocs/public/index.php(5): require_once('...') #45 {main} |
| DEBUG 08:49:44 | app | End onKernelRequest App\EventListener\KernelRequestListener |
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\MultipartRequestSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\MultipartRequestSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Sonata\TranslationBundle\EventSubscriber\LocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Sonata\\TranslationBundle\\EventSubscriber\\LocaleSubscriber::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\RequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\RequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\KernelRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\KernelRequestListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "App\EventListener\UserSessionTracker::onRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\UserSessionTracker::onRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 08:49:44 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://perseo.dev3.prometeoinnovations.com/robots.txt"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:135
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:139)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:35)
at require_once('/var/www/html/perseo/httpdocs/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
(vendor/symfony/routing/Matcher/UrlMatcher.php:106)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
(vendor/symfony/routing/Router.php:257)
at Symfony\Component\Routing\Router->matchRequest()
(vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:139)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:35)
at require_once('/var/www/html/perseo/httpdocs/vendor/autoload_runtime.php')
(public/index.php:5)
|