Exceptions
Exceptions 3
Symfony\Component\HttpKernel\Exception\ HttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\HttpException {#1137 -statusCode: 401 -headers: [] }
private function throwUnauthorizedException(AuthenticationException $authException): never
{
$this->logger?->notice(sprintf('No Authentication entry point configured, returning a %s HTTP response. Configure "entry_point" on the firewall "%s" if you want to modify the response.', Response::HTTP_UNAUTHORIZED, $this->firewallName));
throw new HttpException(Response::HTTP_UNAUTHORIZED, $authException->getMessage(), $authException, [], $authException->getCode());
}
}
in
vendor/symfony/security-http/Firewall/ExceptionListener.php
->
throwUnauthorizedException
(line 189)
}
private function startAuthentication(Request $request, AuthenticationException $authException): Response
{
if (null === $this->authenticationEntryPoint) {
$this->throwUnauthorizedException($authException);
}
$this->logger?->debug('Calling Authentication entry point.', ['entry_point' => $this->authenticationEntryPoint]);
if (!$this->stateless) {
in
vendor/symfony/security-http/Firewall/ExceptionListener.php
->
startAuthentication
(line 148)
$insufficientAuthenticationException = new InsufficientAuthenticationException('Full authentication is required to access this resource.', 0, $exception);
if (null !== $token) {
$insufficientAuthenticationException->setToken($token);
}
$event->setResponse($this->startAuthentication($event->getRequest(), $insufficientAuthenticationException));
} catch (\Exception $e) {
$event->setThrowable($e);
}
return;
in
vendor/symfony/security-http/Firewall/ExceptionListener.php
->
handleAccessDeniedException
(line 103)
return;
}
if ($exception instanceof AccessDeniedException) {
$this->handleAccessDeniedException($event, $exception);
return;
}
if ($exception instanceof LazyResponseException) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelException
(line 116)
$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 220)
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 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
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 239)
* Handles a throwable by trying to convert it to a Response.
*/
private function handleThrowable(\Throwable $e, Request $request, int $type): Response
{
$event = new ExceptionEvent($this, $request, $type, $e);
$this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);
// a listener might have replaced the exception
$e = $event->getThrowable();
if (!$event->hasResponse()) {
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleThrowable
(line 91)
$this->finishRequest($request, $type);
throw $e;
}
return $response = $this->handleThrowable($e, $request, $type);
} finally {
$this->requestStack->pop();
if ($response instanceof StreamedResponse && $callback = $response->getCallback()) {
$requestStack = $this->requestStack;
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
date_default_timezone_set('America/Montevideo');
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Symfony\Component\Security\Core\Exception\ InsufficientAuthenticationException
$token = $this->tokenStorage->getToken();
if (!$this->authenticationTrustResolver->isFullFledged($token)) {
$this->logger?->debug('Access denied, the user is not fully authenticated; redirecting to authentication entry point.', ['exception' => $exception]);
try {
$insufficientAuthenticationException = new InsufficientAuthenticationException('Full authentication is required to access this resource.', 0, $exception);
if (null !== $token) {
$insufficientAuthenticationException->setToken($token);
}
$event->setResponse($this->startAuthentication($event->getRequest(), $insufficientAuthenticationException));
in
vendor/symfony/security-http/Firewall/ExceptionListener.php
->
handleAccessDeniedException
(line 103)
return;
}
if ($exception instanceof AccessDeniedException) {
$this->handleAccessDeniedException($event, $exception);
return;
}
if ($exception instanceof LazyResponseException) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelException
(line 116)
$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 220)
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 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
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 239)
* Handles a throwable by trying to convert it to a Response.
*/
private function handleThrowable(\Throwable $e, Request $request, int $type): Response
{
$event = new ExceptionEvent($this, $request, $type, $e);
$this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);
// a listener might have replaced the exception
$e = $event->getThrowable();
if (!$event->hasResponse()) {
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleThrowable
(line 91)
$this->finishRequest($request, $type);
throw $e;
}
return $response = $this->handleThrowable($e, $request, $type);
} finally {
$this->requestStack->pop();
if ($response instanceof StreamedResponse && $callback = $response->getCallback()) {
$requestStack = $this->requestStack;
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
date_default_timezone_set('America/Montevideo');
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Symfony\Component\Security\Core\Exception\ AccessDeniedException
}
}
private function createAccessDeniedException(Request $request, array $attributes): AccessDeniedException
{
$exception = new AccessDeniedException();
$exception->setAttributes($attributes);
$exception->setSubject($request);
return $exception;
}
in
vendor/symfony/security-http/Firewall/AccessListener.php
->
createAccessDeniedException
(line 81)
}
$token = $this->tokenStorage->getToken() ?? new NullToken();
if (!$this->accessDecisionManager->decide($token, $attributes, $request, true)) {
throw $this->createAccessDeniedException($request, $attributes);
}
}
private function createAccessDeniedException(Request $request, array $attributes): AccessDeniedException
{
in
vendor/symfony/security-bundle/Debug/WrappedLazyListener.php
->
authenticate
(line 46)
public function authenticate(RequestEvent $event): void
{
$startTime = microtime(true);
try {
$this->listener->authenticate($event);
} catch (LazyResponseException $e) {
$this->response = $e->getResponse();
throw $e;
} finally {
in
vendor/symfony/security-http/Firewall/AbstractListener.php
->
authenticate
(line 26)
abstract class AbstractListener implements FirewallListenerInterface
{
final public function __invoke(RequestEvent $event): void
{
if (false !== $this->supports($event->getRequest())) {
$this->authenticate($event);
}
}
public static function getPriority(): int
{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 83)
}, $listener, FirewallContext::class)();
$listener($event);
} else {
$wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);
$wrappedListener($event);
$wrappedListeners[] = $wrappedListener->getInfo();
if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {
$authenticatorManagerListener = $listener;
}
}
in
vendor/symfony/security-http/Firewall.php
->
callListeners
(line 95)
if (null !== $logoutListener) {
yield $logoutListener;
}
};
$this->callListeners($event, $authenticationListeners());
}
/**
* @return void
*/
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$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 220)
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 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
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 157)
*/
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 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
date_default_timezone_set('America/Montevideo');
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.4: "Symfony\Bridge\Doctrine\Logger\DbalLogger" is deprecated, use a middleware instead. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:71 called by App_KernelDevDebugContainer.php:1493, https://github.com/doctrine/orm/issues/10098, package doctrine/orm) { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode also with the AnnotationDriver today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AnnotationDriver.php:82 called by App_KernelDevDebugContainer.php:1493, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: DebugStack is deprecated. (DebugStack.php:41 called by App_KernelDevDebugContainer.php:744, https://github.com/doctrine/dbal/pull/4967, package doctrine/dbal) { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Not configuring a schema manager factory is deprecated. Use Doctrine\DBAL\Schema\DefaultSchemaManagerFactory which is going to be the default in DBAL 4. (Connection.php:227 called by DriverManager.php:197, https://github.com/doctrine/dbal/issues/5812, package doctrine/dbal) { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Doctrine\ORM\EntityManager::create() is deprecated. To bootstrap a DBAL connection, call Doctrine\DBAL\DriverManager::getConnection() instead. Use the constructor to create an instance of Doctrine\ORM\EntityManager. (EntityManager.php:993 called by App_KernelDevDebugContainer.php:811, https://github.com/doctrine/orm/pull/9961, package doctrine/orm) { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Doctrine\DBAL\Connection::getEventManager is deprecated. (Connection.php:302 called by EntityManager.php:167, https://github.com/doctrine/dbal/issues/5784, package doctrine/dbal) { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:169 called by EntityManager.php:182, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm) { "exception": {} } |
INFO 14:04:38 | doctrine |
Connecting with parameters {params} { "params": { "driver": "pdo_mysql", "user": "credifast", "password": "<redacted>", "host": "127.0.0.1", "port": "3306", "dbname": "credifast_core_migration_nov", "driverOptions": { "TrustServerCertificate": true, "Encrypt": "false" }, "defaultTableOptions": { "collation": "utf8mb4_unicode_ci" }, "charset": "utf8mb4" } } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: The "Symfony\Bridge\Doctrine\SchemaListener\MessengerTransportDoctrineSchemaSubscriber" class is deprecated. Use "Symfony\Bridge\Doctrine\SchemaListener\MessengerTransportDoctrineSchemaListener" instead. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Symfony\Bridge\Doctrine\SchemaListener\MessengerTransportDoctrineSchemaSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: The "Symfony\Bridge\Doctrine\SchemaListener\DoctrineDbalCacheAdapterSchemaSubscriber" class is deprecated. Use "Symfony\Bridge\Doctrine\SchemaListener\DoctrineDbalCacheAdapterSchemaListener" instead. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Symfony\Bridge\Doctrine\SchemaListener\DoctrineDbalCacheAdapterSchemaSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: The "Symfony\Bridge\Doctrine\SchemaListener\RememberMeTokenProviderDoctrineSchemaSubscriber" class is deprecated. Use "Symfony\Bridge\Doctrine\SchemaListener\RememberMeTokenProviderDoctrineSchemaListener" instead. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Symfony\Bridge\Doctrine\SchemaListener\RememberMeTokenProviderDoctrineSchemaSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 14:04:38 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "ac2139" }, "request_uri": "http://core.credifastdev.com/_profiler/ac2139", "method": "GET" } |
DEBUG 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | php |
User Notice: Install the curl extension or run "composer require amphp/http-client:^4.2.1" to perform async HTTP operations, including full HTTP/2 support { "exception": { "severity": 1024, "file": "/mnt/www/credifast_core/vendor/symfony/http-client/HttpClient.php", "line": 65, "trace": [ { "file": "/mnt/www/credifast_core/var/cache/dev/ContainerXnil6US/App_KernelDevDebugContainer.php", "line": 1539, "function": "create", "class": "Symfony\\Component\\HttpClient\\HttpClient", "type": "::" } ], "count": 1 } } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.4: Not passing an instance of "Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder" as "$debugDataHolder" to "Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::__construct()" is deprecated. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.4: "Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::addLogger()" is deprecated. Pass an instance of "Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder" to the constructor instead. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/doctrine-bridge 6.4: "Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::addLogger()" is deprecated. Pass an instance of "Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder" to the constructor instead. { "exception": {} } |
INFO 14:04:38 | php |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. { "exception": {} } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXnil6US\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXnil6US\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXnil6US\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXnil6US\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 14:04:38 | 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 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXnil6US\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXnil6US\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 14:04:38 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 14:04:38 | 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 14:04:38 | 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 14:04:38 | 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 14:04:38 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 14:04:38 | 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 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | doctrine |
Executing query: SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_ { "sql": "SELECT MAX(s0_.id) AS sclr_0 FROM settings s0_" } |
DEBUG 14:04:38 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.created AS created_1, s0_.multiplier AS multiplier_2, s0_.insurance_rate_value AS insurance_rate_value_3, s0_.insurance_fixed_value AS insurance_fixed_value_4, s0_.iva AS iva_5, s0_.rut AS rut_6, s0_.razon_social AS razon_social_7, s0_.domicilio_fiscal AS domicilio_fiscal_8, s0_.fecha_primer_aviso AS fecha_primer_aviso_9, s0_.fecha_segundo_aviso AS fecha_segundo_aviso_10, s0_.fecha_tercer_aviso AS fecha_tercer_aviso_11, s0_.precio_primer_aviso AS precio_primer_aviso_12, s0_.precio_segundo_aviso AS precio_segundo_aviso_13, s0_.precio_tercer_aviso AS precio_tercer_aviso_14, s0_.dias_gracia_efectivo AS dias_gracia_efectivo_15, s0_.dias_gracia_orden_de_compra AS dias_gracia_orden_de_compra_16, s0_.dias_gracia_descuento_de_documento AS dias_gracia_descuento_de_documento_17, s0_.tope_concesion_efectivo AS tope_concesion_efectivo_18, s0_.tope_concesion_orden_compra AS tope_concesion_orden_compra_19, s0_.tope_administracion_efectivo AS tope_administracion_efectivo_20, s0_.tope_administracion_orden_compra AS tope_administracion_orden_compra_21, s0_.tope_conjunto_efectivo AS tope_conjunto_efectivo_22, s0_.tope_conjunto_orden_compra AS tope_conjunto_orden_compra_23, s0_.monto_maximo_multa_uyu AS monto_maximo_multa_uyu_24, s0_.monto_multa_uyu AS monto_multa_uyu_25, s0_.monto_maximo_multa_usd AS monto_maximo_multa_usd_26, s0_.monto_multa_usd AS monto_multa_usd_27, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_28, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_29, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_30, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_31, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_32, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_33, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_34, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_35, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_36, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_37, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_38, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_39, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_40, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_41, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_42, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_43, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_44, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_45, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_46, s0_.is_system_locked AS is_system_locked_47 FROM settings s0_ WHERE s0_.id = ?", "params": { "1": 4 }, "types": { "1": 1 } } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest". { "event": "kernel.request", "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "ContainerXnil6US\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerXnil6US\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:04:38 | 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 14:04:38 | 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 14:04:38 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
Stack Traces 3
[3/3]
HttpException
|
---|
Symfony\Component\HttpKernel\Exception\HttpException: Full authentication is required to access this resource. at vendor/symfony/security-http/Firewall/ExceptionListener.php:232 at Symfony\Component\Security\Http\Firewall\ExceptionListener->throwUnauthorizedException() (vendor/symfony/security-http/Firewall/ExceptionListener.php:189) at Symfony\Component\Security\Http\Firewall\ExceptionListener->startAuthentication() (vendor/symfony/security-http/Firewall/ExceptionListener.php:148) at Symfony\Component\Security\Http\Firewall\ExceptionListener->handleAccessDeniedException() (vendor/symfony/security-http/Firewall/ExceptionListener.php:103) at Symfony\Component\Security\Http\Firewall\ExceptionListener->onKernelException() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:239) at Symfony\Component\HttpKernel\HttpKernel->handleThrowable() (vendor/symfony/http-kernel/HttpKernel.php:91) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:197) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:21) |
[2/3]
InsufficientAuthenticationException
|
---|
Symfony\Component\Security\Core\Exception\InsufficientAuthenticationException: Full authentication is required to access this resource. at vendor/symfony/security-http/Firewall/ExceptionListener.php:143 at Symfony\Component\Security\Http\Firewall\ExceptionListener->handleAccessDeniedException() (vendor/symfony/security-http/Firewall/ExceptionListener.php:103) at Symfony\Component\Security\Http\Firewall\ExceptionListener->onKernelException() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:239) at Symfony\Component\HttpKernel\HttpKernel->handleThrowable() (vendor/symfony/http-kernel/HttpKernel.php:91) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:197) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:21) |
[1/3]
AccessDeniedException
|
---|
Symfony\Component\Security\Core\Exception\AccessDeniedException: Access Denied. at vendor/symfony/security-http/Firewall/AccessListener.php:87 at Symfony\Component\Security\Http\Firewall\AccessListener->createAccessDeniedException() (vendor/symfony/security-http/Firewall/AccessListener.php:81) at Symfony\Component\Security\Http\Firewall\AccessListener->authenticate() (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46) at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate() (vendor/symfony/security-http/Firewall/AbstractListener.php:26) at Symfony\Component\Security\Http\Firewall\AbstractListener->__invoke() (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:83) at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners() (vendor/symfony/security-http/Firewall.php:95) at Symfony\Component\Security\Http\Firewall->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:157) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:197) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:21) |