Error 404 Not Found

GET http://core.credifastdev.com/robots.txt

Forwarded to ErrorController (bc60d9)

Exceptions

No route found for "GET http://core.credifastdev.com/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#827
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
Kernel->handle() in public/index.php (line 21)
  1. }
  2. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  3. date_default_timezone_set('America/Montevideo');
  4. $request = Request::createFromGlobals();
  5. $response = $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request, $response);

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/robots.txt/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. public function matchRequest(Request $request): array
  2. {
  3. $this->request = $request;
  4. $ret = $this->match($request->getPathInfo());
  5. $this->request = null;
  6. return $ret;
  7. }
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
Kernel->handle() in public/index.php (line 21)
  1. }
  2. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  3. date_default_timezone_set('America/Montevideo');
  4. $request = Request::createFromGlobals();
  5. $response = $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request, $response);

Logs

Level Channel Message
INFO 02:46:23 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "ac103f"
    },
    "request_uri": "http://core.credifastdev.com/_profiler/ac103f?panel=exception&type=request",
    "method": "GET"
}
INFO 02:46:23 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 today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by App_KernelDevDebugContainer.php:1520, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 02:46:23 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:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
INFO 02:46:23 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "user": "doadmin",
        "password": "<redacted>",
        "host": "db-mysql-nyc3-12076-do-user-9843736-0.e.db.ondigitalocean.com",
        "port": "25060",
        "dbname": "julio",
        "idle_connection_ttl": 600,
        "driverOptions": {
            "TrustServerCertificate": true,
            "Encrypt": "false"
        },
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "charset": "utf8mb4"
    }
}
DEBUG 02:46:23 doctrine Executing query: 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_uyuplazo1 AS monto_maximo_multa_uyuplazo1_24, s0_.monto_maximo_multa_uyuplazo2 AS monto_maximo_multa_uyuplazo2_25, s0_.monto_maximo_multa_uyuplazo3 AS monto_maximo_multa_uyuplazo3_26, s0_.monto_multa_uyu AS monto_multa_uyu_27, s0_.monto_maximo_multa_usdplazo1 AS monto_maximo_multa_usdplazo1_28, s0_.monto_maximo_multa_usdplazo2 AS monto_maximo_multa_usdplazo2_29, s0_.monto_maximo_multa_usdplazo3 AS monto_maximo_multa_usdplazo3_30, s0_.monto_multa_usd AS monto_multa_usd_31, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_32, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_33, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_34, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_35, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_36, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_37, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_38, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_39, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_40, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_41, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_42, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_43, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_44, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_45, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_46, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_47, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_48, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_49, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_50, s0_.is_system_locked AS is_system_locked_51, s0_.edad_maxima_para_otorgar_credito AS edad_maxima_para_otorgar_credito_52, s0_.edad_maxima_para_emplear_seguro AS edad_maxima_para_emplear_seguro_53, s0_.dias_excento_concesion AS dias_excento_concesion_54, s0_.categoria1_cdesde AS categoria1_cdesde_55, s0_.categoria1_chasta AS categoria1_chasta_56, s0_.categoria2_adesde AS categoria2_adesde_57, s0_.categoria2_ahasta AS categoria2_ahasta_58, s0_.categoria2_bdesde AS categoria2_bdesde_59, s0_.categoria2_bhasta AS categoria2_bhasta_60, s0_.categoria3_desde AS categoria3_desde_61, s0_.categoria3_hasta AS categoria3_hasta_62, s0_.categoria4_desde AS categoria4_desde_63, s0_.categoria4_hasta AS categoria4_hasta_64, s0_.categoria5_desde AS categoria5_desde_65, s0_.categoria5_hasta AS categoria5_hasta_66, s0_.categoria_x AS categoria_x_67 FROM settings s0_ ORDER BY s0_.created DESC, s0_.id DESC LIMIT 1
{
    "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_uyuplazo1 AS monto_maximo_multa_uyuplazo1_24, s0_.monto_maximo_multa_uyuplazo2 AS monto_maximo_multa_uyuplazo2_25, s0_.monto_maximo_multa_uyuplazo3 AS monto_maximo_multa_uyuplazo3_26, s0_.monto_multa_uyu AS monto_multa_uyu_27, s0_.monto_maximo_multa_usdplazo1 AS monto_maximo_multa_usdplazo1_28, s0_.monto_maximo_multa_usdplazo2 AS monto_maximo_multa_usdplazo2_29, s0_.monto_maximo_multa_usdplazo3 AS monto_maximo_multa_usdplazo3_30, s0_.monto_multa_usd AS monto_multa_usd_31, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_32, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_33, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_34, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_35, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_36, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_37, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_38, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_39, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_40, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_41, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_42, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_43, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_44, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_45, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_46, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_47, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_48, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_49, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_50, s0_.is_system_locked AS is_system_locked_51, s0_.edad_maxima_para_otorgar_credito AS edad_maxima_para_otorgar_credito_52, s0_.edad_maxima_para_emplear_seguro AS edad_maxima_para_emplear_seguro_53, s0_.dias_excento_concesion AS dias_excento_concesion_54, s0_.categoria1_cdesde AS categoria1_cdesde_55, s0_.categoria1_chasta AS categoria1_chasta_56, s0_.categoria2_adesde AS categoria2_adesde_57, s0_.categoria2_ahasta AS categoria2_ahasta_58, s0_.categoria2_bdesde AS categoria2_bdesde_59, s0_.categoria2_bhasta AS categoria2_bhasta_60, s0_.categoria3_desde AS categoria3_desde_61, s0_.categoria3_hasta AS categoria3_hasta_62, s0_.categoria4_desde AS categoria4_desde_63, s0_.categoria4_hasta AS categoria4_hasta_64, s0_.categoria5_desde AS categoria5_desde_65, s0_.categoria5_hasta AS categoria5_hasta_66, s0_.categoria_x AS categoria_x_67 FROM settings s0_ ORDER BY s0_.created DESC, s0_.id DESC LIMIT 1"
}
DEBUG 02:46:23 doctrine Executing query: 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_uyuplazo1 AS monto_maximo_multa_uyuplazo1_24, s0_.monto_maximo_multa_uyuplazo2 AS monto_maximo_multa_uyuplazo2_25, s0_.monto_maximo_multa_uyuplazo3 AS monto_maximo_multa_uyuplazo3_26, s0_.monto_multa_uyu AS monto_multa_uyu_27, s0_.monto_maximo_multa_usdplazo1 AS monto_maximo_multa_usdplazo1_28, s0_.monto_maximo_multa_usdplazo2 AS monto_maximo_multa_usdplazo2_29, s0_.monto_maximo_multa_usdplazo3 AS monto_maximo_multa_usdplazo3_30, s0_.monto_multa_usd AS monto_multa_usd_31, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_32, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_33, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_34, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_35, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_36, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_37, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_38, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_39, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_40, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_41, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_42, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_43, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_44, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_45, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_46, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_47, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_48, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_49, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_50, s0_.is_system_locked AS is_system_locked_51, s0_.edad_maxima_para_otorgar_credito AS edad_maxima_para_otorgar_credito_52, s0_.edad_maxima_para_emplear_seguro AS edad_maxima_para_emplear_seguro_53, s0_.dias_excento_concesion AS dias_excento_concesion_54, s0_.categoria1_cdesde AS categoria1_cdesde_55, s0_.categoria1_chasta AS categoria1_chasta_56, s0_.categoria2_adesde AS categoria2_adesde_57, s0_.categoria2_ahasta AS categoria2_ahasta_58, s0_.categoria2_bdesde AS categoria2_bdesde_59, s0_.categoria2_bhasta AS categoria2_bhasta_60, s0_.categoria3_desde AS categoria3_desde_61, s0_.categoria3_hasta AS categoria3_hasta_62, s0_.categoria4_desde AS categoria4_desde_63, s0_.categoria4_hasta AS categoria4_hasta_64, s0_.categoria5_desde AS categoria5_desde_65, s0_.categoria5_hasta AS categoria5_hasta_66, s0_.categoria_x AS categoria_x_67 FROM settings s0_ ORDER BY s0_.created DESC, s0_.id DESC LIMIT 1
{
    "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_uyuplazo1 AS monto_maximo_multa_uyuplazo1_24, s0_.monto_maximo_multa_uyuplazo2 AS monto_maximo_multa_uyuplazo2_25, s0_.monto_maximo_multa_uyuplazo3 AS monto_maximo_multa_uyuplazo3_26, s0_.monto_multa_uyu AS monto_multa_uyu_27, s0_.monto_maximo_multa_usdplazo1 AS monto_maximo_multa_usdplazo1_28, s0_.monto_maximo_multa_usdplazo2 AS monto_maximo_multa_usdplazo2_29, s0_.monto_maximo_multa_usdplazo3 AS monto_maximo_multa_usdplazo3_30, s0_.monto_multa_usd AS monto_multa_usd_31, s0_.porcentaje_minimo_de_cuotas_pagas_para_cancelacion AS porcentaje_minimo_de_cuotas_pagas_para_cancelacion_32, s0_.porcentaje_intereses_para_cancelacion AS porcentaje_intereses_para_cancelacion_33, s0_.minimo_intereses_para_cancelacion_uyu AS minimo_intereses_para_cancelacion_uyu_34, s0_.minimo_intereses_para_cancelacion_usd AS minimo_intereses_para_cancelacion_usd_35, s0_.limite_condonacion_admin_dep AS limite_condonacion_admin_dep_36, s0_.limite_condonacion_supervisor AS limite_condonacion_supervisor_37, s0_.mora_tasa_annual_sin_iva_para_ui AS mora_tasa_annual_sin_iva_para_ui_38, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep AS porcentaje_maximo_sobre_saldo_para_aprobacion_admin_dep_39, s0_.porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor AS porcentaje_maximo_sobre_saldo_para_aprobacion_supervisor_40, s0_.descuento_documento_empresa_uyu AS descuento_documento_empresa_uyu_41, s0_.descuento_documento_empresa_usd AS descuento_documento_empresa_usd_42, s0_.descuento_documento_financiera_uyu AS descuento_documento_financiera_uyu_43, s0_.descuento_documento_financiera_usd AS descuento_documento_financiera_usd_44, s0_.descuento_documento_especial_uyu AS descuento_documento_especial_uyu_45, s0_.descuento_documento_especial_usd AS descuento_documento_especial_usd_46, s0_.descuento_documento_costo_liquidacion_uyu AS descuento_documento_costo_liquidacion_uyu_47, s0_.descuento_documento_costo_liquidacion_usd AS descuento_documento_costo_liquidacion_usd_48, s0_.refinanciacion_entrega_inicial_uyu AS refinanciacion_entrega_inicial_uyu_49, s0_.refinanciacion_entrega_inicial_usd AS refinanciacion_entrega_inicial_usd_50, s0_.is_system_locked AS is_system_locked_51, s0_.edad_maxima_para_otorgar_credito AS edad_maxima_para_otorgar_credito_52, s0_.edad_maxima_para_emplear_seguro AS edad_maxima_para_emplear_seguro_53, s0_.dias_excento_concesion AS dias_excento_concesion_54, s0_.categoria1_cdesde AS categoria1_cdesde_55, s0_.categoria1_chasta AS categoria1_chasta_56, s0_.categoria2_adesde AS categoria2_adesde_57, s0_.categoria2_ahasta AS categoria2_ahasta_58, s0_.categoria2_bdesde AS categoria2_bdesde_59, s0_.categoria2_bhasta AS categoria2_bhasta_60, s0_.categoria3_desde AS categoria3_desde_61, s0_.categoria3_hasta AS categoria3_hasta_62, s0_.categoria4_desde AS categoria4_desde_63, s0_.categoria4_hasta AS categoria4_hasta_64, s0_.categoria5_desde AS categoria5_desde_65, s0_.categoria5_hasta AS categoria5_hasta_66, s0_.categoria_x AS categoria_x_67 FROM settings s0_ ORDER BY s0_.created DESC, s0_.id DESC LIMIT 1"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.request" to listener "App\CrediFastCore\Infrastructure\Middleware\SistemaBloqueadoMiddleware::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\CrediFastCore\\Infrastructure\\Middleware\\SistemaBloqueadoMiddleware::onKernelRequest"
}
DEBUG 02:46:23 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 02:46:23 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 02:46:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 02:46:23 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 02:46:23 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 02:46:23 event Notified event "kernel.controller_arguments" to listener "Container1cCWEuY\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container1cCWEuY\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 02:46:23 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"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://core.credifastdev.com/robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  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:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  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:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:21)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
     (vendor/symfony/routing/Matcher/UrlMatcher.php:89)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
     (vendor/symfony/routing/Router.php:188)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  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:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  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:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:21)