From 6c748a8a2d43d5723b5685fb18a46ebbd775cba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Sat, 18 May 2024 10:19:25 +0200 Subject: [PATCH] haciendo pruebas --- .../Presupuestos/Presupuestocliente.php | 32 +- ci4/app/Services/PresupuestoService.php | 8 +- .../cosidotapablanda/_datosEnvios.js | 4 +- .../cosidotapablanda/_datosServiciosItems.js | 20 +- .../_presupuestoDireccionesForm.php | 6 +- xdebug.log | 57808 ++++++++++++++++ 6 files changed, 57845 insertions(+), 33 deletions(-) diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 1e268165..37f31b54 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -870,12 +870,11 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $proporcion = intval($direccion['unidades'])/$selected_tirada*100.0; $unidades_calculo = floor($tirada[$i] * $proporcion / 100.0); - $peso_calculo = $peso_libro / $selected_tirada * $unidades_calculo; $coste_envio = $this->calcular_coste_envio( - $direccion['id'], $peso_calculo, $unidades_calculo, $direccion['tipo']=='cajas'?0:1); + $direccion['id'], $peso_libro, $unidades_calculo, $direccion['tipo']=='cajas'?0:1); if(count($coste_envio)> 0){ - $coste = $coste_envio[0]->coste; - $margen = ($coste_envio[0]->coste * $coste_envio[0]->margen)/100.0; + $coste = floatval($coste_envio[0]->coste); + $margen = ($coste * floatval($coste_envio[0]->margen))/100.0; $coste -= $margen; $resultado_presupuesto['totales'][$i]['coste_envio'] += $coste; $resultado_presupuesto['totales'][$i]['margen_envio'] += $margen; @@ -916,9 +915,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $selected_tirada, $datos_presupuesto, $datosCabecera, $resultado_presupuesto['info'], $resumen_totales, $iva_reducido, $tiradas_alternativas); - // Lineas Presupuesto - /* foreach ($resultado_presupuesto['info']['interior'] as $linea){ if(count($linea) > 0) @@ -949,11 +946,10 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $this->guardarServicio($id, $servicio, 'manipulado'); } } - */ + foreach ($reqData['direcciones'] as $direccion){ $this->guardarLineaEnvio($id, $direccion, $peso_libro); } - return $this->respond([ 'value' => $id, @@ -979,9 +975,13 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController protected function guardarLineaEnvio($presupuestoId, $direccion, $peso_libro){ - + + $unidades = intval($direccion['unidades']); + $peso_envio = $peso_libro * $unidades / 1000.0; + $data = $this->calcular_coste_envio($direccion['id'], $peso_libro, $direccion['unidades'], $direccion['tipo']=='cajas'?0:1); if(count($data)>0){ + $data[0]->presupuesto_id = $presupuestoId; $data[0]->tarifa_id = $data[0]->id; unset($data[0]->id); @@ -989,14 +989,14 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController unset($data[0]->coste); $data[0]->entregaPieCalle = $direccion['tipo']=='cajas'?0:1; unset($data[0]->tipo); + $data[0]->peso = $peso_envio; + $data[0]->cantidad = $unidades; + $model = new PresupuestoDireccionesModel(); $model->insert($data[0]); } } - protected function guardarTiradas($presupuestoId, $direccion){ - - } protected function guardarServicio($presupuestoId, $servicio, $tipo){ @@ -1063,17 +1063,17 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController $margen = 0; if ($data > 0) { - $peso_envio = $peso * $unidades / 1000.0; // peso libro * unidades y se pasa a gramos + $peso_envio = $peso * $unidades / 1000.0; // peso libro * unidades y se pasa a kilogramos $tarifas_envio = $modelTarifaEnvio->getTarifaEnvio($data[0]->pais_id, $data[0]->cp, $peso_envio, $entregaPieCalle ? 'palets' : 'cajas'); for ($i = 0; $i < count($tarifas_envio); $i++) { - if ($peso > $tarifas_envio[$i]->peso_max) { - $tarifas_envio[$i]->precio = number_format($tarifas_envio[$i]->peso_min + ($peso - $tarifas_envio[$i]->peso_min) * $tarifas_envio[$i]->precio_adicional, 2); + if ($peso_envio > $tarifas_envio[$i]->peso_max || floatval($tarifas_envio[$i]->precio_max) == 0) { + $tarifas_envio[$i]->precio = number_format(floatval($tarifas_envio[$i]->precio_min) + ($peso_envio - floatval($tarifas_envio[$i]->peso_min)) * floatval($tarifas_envio[$i]->precio_adicional), 2); } // si no se calcula linealmente else { $m = (($tarifas_envio[$i]->precio_max - $tarifas_envio[$i]->precio_min) / ($tarifas_envio[$i]->peso_max - $tarifas_envio[$i]->peso_min)); $b = $tarifas_envio[$i]->precio_max - $m * $tarifas_envio[$i]->peso_max; - $tarifas_envio[$i]->precio = number_format($m * $peso + $b, 2); + $tarifas_envio[$i]->precio = number_format($m * $peso_envio + $b, 2); } $margen = $tarifas_envio[$i]->margen; } diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php index b703558b..d428cb4f 100755 --- a/ci4/app/Services/PresupuestoService.php +++ b/ci4/app/Services/PresupuestoService.php @@ -1117,7 +1117,7 @@ class PresupuestoService extends BaseService if( str_contains($linea->tipo, 'guardas') ){ $datos['uso'] = 'guardas'; - $datos['datosPedido']->paginas_impresion = linea->paginas_impresion; + $datos['datosPedido']->paginas_impresion = $linea->paginas_impresion; } $comp_data = PresupuestoService::obtenerComparadorPlana($datos); @@ -1468,9 +1468,9 @@ class PresupuestoService extends BaseService } // Si el presupuesto no es duplicado, se comprueba que // no ha cambiado el precio unidad - if(round($nueva_tarifa[0]->precio_unidad, 2) != $servicio->precio_unidad || - $nueva_tarifa[0]->margen != $servicio->margen || - $nueva_tarifa[0]->tiempo != $servicio->tiempo){ + if(round($nueva_tarifa[0]->precio_unidad, 2) != floatval($servicio->precio_unidad) || + $nueva_tarifa[0]->margen != floatval($servicio->margen) || + $nueva_tarifa[0]->tiempo != floatval($servicio->tiempo)){ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2); $servicio->tiempo = $nueva_tarifa[0]->tiempo==null?"": round($nueva_tarifa[0]->tiempo, 2); diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.js b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.js index a7e48a22..dcfde390 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.js +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.js @@ -62,7 +62,7 @@ async function get_coste_envio_tiradasAlternativas(tirada){ if(datos_tarifa.id!=null){ if(peso_envio>parseFloat(datos_tarifa.peso_max)){ - coste += parseFloat(datos_tarifa.peso_min) + (peso_envio-parseFloat(datos_tarifa.peso_min))*parseFloat(datos_tarifa.precio_adicional); + coste += (parseFloat(datos_tarifa.precio_min) + (peso_envio-parseFloat(datos_tarifa.peso_min)) * parseFloat(datos_tarifa.precio_adicional)).toFixed(2); } // si no se calcula linealmente else{ @@ -130,7 +130,7 @@ async function updateTablaEnvios(tirada_inicial = null, tirada = null){ if(datos_tarifa.id!=null){ - if(peso_envio>parseFloat(datos_tarifa.peso_max)){ + if(peso_envio>parseFloat(datos_tarifa.peso_max) || parseFloat(datos_tarifa.peso_max) == 0){ datos_tarifa.precio = parseFloat(datos_tarifa.peso_min) + (peso_envio-parseFloat(datos_tarifa.peso_min))*parseFloat(datos_tarifa.precio_adicional); } // si no se calcula linealmente diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js index 5d4aabd0..43087a11 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js @@ -590,14 +590,18 @@ function init_servicio_encuadernado(){ } function convertirTiempo(horas){ - if(horas != null){ - - const seconds = parseFloat(horas) * 3600; - // se convierte a formato hh:mm:ss - const h = Math.floor(seconds / 3600); - const minutos = Math.floor((seconds % 3600) / 60); - const segundos = seconds % 60; - return h + ':' + minutos + ':' + segundos; + if(horas != null && horas.length>0){ + if(parseFloat(horas)>0){ + const seconds = parseFloat(horas) * 3600; + // se convierte a formato hh:mm:ss + const h = Math.floor(seconds / 3600); + const minutos = Math.floor((seconds % 3600) / 60); + const segundos = seconds % 60; + return h + ':' + minutos + ':' + segundos; + } + else{ + return ""; + } } else{ return ""; diff --git a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm.php b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm.php index 34bb8273..601eeca8 100644 --- a/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm.php +++ b/ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm.php @@ -186,14 +186,14 @@ $('#saveDireccionEnvio').on('click', function(){ var precios = [] for (var i = 0; i < data.length; i++) { - if(peso_envio>data[i].peso_max){ - data[i].precio = (data[i].peso_min + (peso_envio-data[i].peso_min)*data[i].precio_adicional).toFixed(2); + if(peso_envio>data[i].peso_max || data[i].precio_max == 0){ + data[i].precio = (parseFloat(data[i].precio_min) + (peso_envio-parseFloat(data[i].peso_min))*parseFloat(data[i].precio_adicional)).toFixed(2); } // si no se calcula linealmente else{ m=((data[i].precio_max-data[i].precio_min)/(data[i].peso_max-data[i].peso_min)) b=data[i].precio_max-m*data[i].peso_max - data[i].precio = (m*peso_envio+b).toFixed(2); + data[i].precio = parseFloat(m*peso_envio+b).toFixed(2); } data[i].margen = data[i].margen } diff --git a/xdebug.log b/xdebug.log index 9ec2030d..4a16f413 100644 --- a/xdebug.log +++ b/xdebug.log @@ -548788,3 +548788,57811 @@ Stack trace: [62] Log closed at 2024-05-15 17:49:31.441426 +[22] Log opened at 2024-05-17 09:35:07.440539 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 09:35:12.984350 + +[22] Log opened at 2024-05-17 09:35:13.010287 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 09:35:16.058382 + +[22] Log opened at 2024-05-17 09:35:16.141077 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 09:35:16.873270 + +[23] Log opened at 2024-05-17 09:35:17.021245 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-17 09:35:19.362871 + +[22] Log opened at 2024-05-17 11:29:11.442596 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 11:29:21.333405 + +[22] Log opened at 2024-05-17 11:29:21.373967 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 11:29:29.358734 + +[22] Log opened at 2024-05-17 11:29:29.529467 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 11:29:30.709886 + +[23] Log opened at 2024-05-17 11:29:30.956085 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-17 11:29:34.633693 + +[25] Log opened at 2024-05-17 11:29:34.647429 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-17 11:29:44.594098 + +[25] Log opened at 2024-05-17 11:29:44.638277 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-17 11:29:56.135505 + +[25] Log opened at 2024-05-17 11:29:56.221981 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[25] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[25] Log closed at 2024-05-17 11:29:57.844782 + +[26] Log opened at 2024-05-17 11:29:57.989924 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-05-17 11:30:01.168704 + +[23] Log opened at 2024-05-17 11:30:24.995284 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-17 11:30:38.557843 + +[23] Log opened at 2024-05-17 11:30:38.702048 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] Log opened at 2024-05-17 11:30:38.709456 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[27] Log opened at 2024-05-17 11:30:38.710738 +[29] Log opened at 2024-05-17 11:30:38.710416 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[28] Log opened at 2024-05-17 11:30:38.711750 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log opened at 2024-05-17 11:30:38.710761 +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-17 11:30:39.367184 + +[23] Log opened at 2024-05-17 11:30:39.388030 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 11:30:41.021453 + +[22] Log opened at 2024-05-17 11:30:41.034347 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-05-17 11:30:42.461771 + +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-05-17 11:30:43.760289 + +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-05-17 11:30:45.529375 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-05-17 11:30:46.608781 + +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[23] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[23] Log closed at 2024-05-17 11:30:47.371054 + +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[22] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[22] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[22] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[22] Log closed at 2024-05-17 11:30:48.317208 + +[30] Log opened at 2024-05-17 11:30:48.372632 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-05-17 11:30:50.548798 + +[30] Log opened at 2024-05-17 11:30:52.767090 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log opened at 2024-05-17 11:30:54.099699 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log opened at 2024-05-17 11:30:54.216828 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log opened at 2024-05-17 11:30:54.392517 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log opened at 2024-05-17 11:30:54.521543 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log opened at 2024-05-17 11:30:54.633550 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log opened at 2024-05-17 11:30:54.741481 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log opened at 2024-05-17 11:30:54.852515 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log opened at 2024-05-17 11:30:54.948392 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-05-17 11:30:57.829743 + +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-05-17 11:30:58.421848 + +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] Log closed at 2024-05-17 11:30:59.097903 + +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-05-17 11:30:59.869497 + +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] Log closed at 2024-05-17 11:31:01.985530 + +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] Log closed at 2024-05-17 11:31:04.484236 + +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] Log closed at 2024-05-17 11:31:08.080682 + +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] Log closed at 2024-05-17 11:31:09.985863 + +[35] Log opened at 2024-05-17 11:31:11.197993 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] Log closed at 2024-05-17 11:31:11.534923 + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-05-17 11:31:16.097196 + +[35] Log opened at 2024-05-17 11:31:20.132183 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] Log closed at 2024-05-17 11:31:23.753571 + +[30] Log opened at 2024-05-17 11:31:41.191935 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-05-17 11:31:44.407440 + +[30] Log opened at 2024-05-17 11:31:45.556613 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] Log closed at 2024-05-17 11:31:48.223445 + +[28] Log opened at 2024-05-17 11:32:00.381853 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] Log closed at 2024-05-17 11:32:04.117647 + +[29] Log opened at 2024-05-17 11:32:19.915851 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] Log closed at 2024-05-17 11:32:24.111689 + +[24] Log opened at 2024-05-17 11:32:52.624303 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 984 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 14 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 15 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 16 -n "$direccion" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 17 -n "$interior" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 18 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 20 -n "$data[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 21 -d 0 -c 0 -n "$data[0]->pais" -m 7 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 22 -d 240001 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 986 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_remove -i 24 -d 240010 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 987 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stop -i 26 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 11:40:18.516523 + +[27] Log opened at 2024-05-17 11:40:24.492320 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 987 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 14 +[27] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- stack_get -i 15 +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 16 +[27] [Step Debug] -> + +[27] Log closed at 2024-05-17 11:40:32.971285 + +[26] Log opened at 2024-05-17 11:45:58.560108 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 14 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 11:46:04.577389 + +[26] Log opened at 2024-05-17 11:46:06.961457 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 14 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 11:46:11.246274 + +[31] Log opened at 2024-05-17 11:46:16.947828 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 14 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 15 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 16 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 17 -n "$interior" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 18 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 20 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 21 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 22 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 24 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 25 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 26 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 27 -n "$interior" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 28 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 31 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-17 11:47:49.207860 + +[31] Log opened at 2024-05-17 11:47:52.057833 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 15 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 16 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 17 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 18 -n "$interior" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 19 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 21 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 22 -n "$resultado_presupuesto[\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 24 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 25 -n "$coste_total" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 26 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 27 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 28 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 29 -n "$interior" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 30 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 32 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 33 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 34 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 35 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 36 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 38 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 39 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 40 -n "$coste_envio[0]" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_value -i 41 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 42 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 43 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 44 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 45 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 46 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 47 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 49 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 50 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 51 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 52 -n "$direccion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 53 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 54 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 55 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 56 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 57 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 58 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 59 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 60 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 61 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 62 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 63 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 64 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 65 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 66 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 67 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 68 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 69 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 71 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 72 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 73 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 75 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 76 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 77 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 78 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 79 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 80 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 81 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 82 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 83 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 84 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 85 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 86 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 87 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 88 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 89 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 90 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 91 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 92 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 93 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 94 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 95 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 96 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 97 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 98 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 99 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 100 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 101 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 102 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 103 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 104 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 105 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 106 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 107 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 108 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 109 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 110 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 111 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 112 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 113 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 114 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 115 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 116 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 117 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 118 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 120 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 121 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 122 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 123 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 124 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 125 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 126 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 127 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 128 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 129 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 130 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 131 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 132 -n "$resultado_presupuesto[\"totales\"][1]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 133 -n "$resultado_presupuesto[\"totales\"][2]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 134 -n "$coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 135 -n "$resultado_presupuesto[\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 136 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 871 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 137 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 138 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 139 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 140 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 141 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 143 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 144 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 145 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 146 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 147 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 148 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 149 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 150 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 151 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 152 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 153 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-17 11:51:51.323270 + +[31] Log opened at 2024-05-17 11:51:53.056511 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 871 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 16 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 17 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 18 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 20 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 22 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 24 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 26 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 27 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 28 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 29 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 31 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 32 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 33 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 35 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 36 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 38 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 40 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 41 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 42 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 43 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 45 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 46 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 47 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 48 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 49 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 50 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 51 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 52 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 53 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 54 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 56 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 57 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 58 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 60 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 62 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 63 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 64 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 65 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 66 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 67 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 69 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 70 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 71 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 73 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 75 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 76 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 77 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 78 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 79 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 80 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 82 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 83 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 84 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 86 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 87 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 88 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 89 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 90 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 91 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 92 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 93 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 95 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 96 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 97 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 99 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 101 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 102 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 103 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 104 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 105 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 106 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 108 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 109 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 110 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 111 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 112 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 113 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 114 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 115 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 116 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 117 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 118 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 119 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 120 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 121 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 122 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 123 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 124 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 125 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 126 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 127 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 128 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 129 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 130 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 131 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 132 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 133 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 134 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 135 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 136 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 137 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 138 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 139 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 140 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 142 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 143 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 144 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 145 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 146 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 147 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 148 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 149 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 150 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 151 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 152 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 153 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 154 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 155 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 156 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 157 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 158 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 159 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 160 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 161 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 162 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 163 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 164 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 165 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 166 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 167 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 168 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 169 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 170 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 171 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 172 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 173 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 174 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 175 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 176 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 177 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 178 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 179 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 180 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 181 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 182 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 183 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 184 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 185 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 186 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 187 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 188 -d 0 -c 0 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-17 11:53:54.353244 + +[31] Log opened at 2024-05-17 11:53:55.135265 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 871 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 16 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 17 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 18 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 20 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 22 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 24 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 27 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 28 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 30 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 31 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 36 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 37 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 38 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 39 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 40 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 41 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 42 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 44 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 45 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 46 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 47 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 48 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 49 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 50 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 51 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 52 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 53 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 54 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 55 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 56 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 58 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 59 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 60 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 62 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 63 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 64 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 65 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 66 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 67 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 68 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 69 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 70 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 72 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 73 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 74 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 75 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 76 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 77 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 78 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 79 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 80 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 81 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 82 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 83 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 84 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 85 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 86 -n "$coste_envio[0]" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_value -i 87 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 88 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 89 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 90 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 91 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 93 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 94 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 95 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 96 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 97 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 98 -n "$coste_envio[0]->precio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 99 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 100 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 101 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 102 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 103 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 104 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 105 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 106 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 107 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 108 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 109 -n "$coste_envio[0]" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 110 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 111 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_value -i 112 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 113 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 114 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 115 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 116 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 117 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 118 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 119 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 120 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 121 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 122 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 123 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 124 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 125 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 126 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 127 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 129 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 130 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 131 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 132 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 133 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 134 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 135 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 136 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 137 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 138 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 139 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 140 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 141 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 143 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 144 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 145 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 146 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 147 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 148 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 149 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 150 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 151 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 152 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 153 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 154 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 155 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 156 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 157 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 158 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 159 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 160 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 161 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 162 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 163 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 164 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 165 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 166 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 167 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 168 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 169 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 170 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 171 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 172 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 173 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 174 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 175 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 176 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 177 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 178 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 179 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 180 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 181 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 182 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 183 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 184 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 185 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 186 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 187 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 188 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 189 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 190 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 191 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 192 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 193 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 194 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 195 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 196 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 197 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 198 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 199 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 200 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 201 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 202 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 203 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 204 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 205 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 206 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 207 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 208 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 209 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 210 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 211 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 212 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 213 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 214 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 215 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 216 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 217 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 218 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 219 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 220 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 221 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 222 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 223 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 224 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 225 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 226 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 227 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 228 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 229 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 230 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 231 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 232 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 233 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 234 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 235 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 236 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 237 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 238 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 239 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 240 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 241 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 242 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 243 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 244 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 245 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 246 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 247 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 248 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 249 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 250 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 251 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 252 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 253 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 254 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 255 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 256 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 257 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 258 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 259 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 260 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 261 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 262 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 263 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 264 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 265 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 266 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 267 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 268 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 269 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 270 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 271 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 272 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 273 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 274 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 275 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 276 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 277 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 278 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 279 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 280 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 281 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 282 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 283 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 284 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 285 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 286 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 287 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 288 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 289 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 290 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 291 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 292 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 293 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 294 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 295 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 296 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 297 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 298 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 299 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 300 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 301 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 302 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 303 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 304 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 305 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 306 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 307 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 308 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 309 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 310 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 311 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 312 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 313 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 314 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 315 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 316 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 317 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 318 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 319 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 320 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 321 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 322 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 323 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 324 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 325 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 326 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 327 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 328 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 329 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 330 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 331 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 332 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 333 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 334 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 335 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 336 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 337 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 338 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 339 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 340 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 341 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 343 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 344 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 345 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 346 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 347 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 348 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 349 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 350 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 351 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 352 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 353 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 354 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 355 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 356 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 357 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 358 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 359 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 360 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 361 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 362 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 363 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 364 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 365 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 366 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 368 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 369 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 370 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 371 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 372 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 373 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 374 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 375 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 376 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 377 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 378 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 379 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 380 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 381 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 382 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 383 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 384 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 385 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 386 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 387 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 388 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 389 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 390 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 391 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 392 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 393 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 394 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 395 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 396 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 397 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 398 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 399 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 400 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 401 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 402 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 403 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 404 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 405 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 406 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 407 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 408 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 409 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 410 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 411 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 412 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 413 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 414 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 415 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 416 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 417 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 418 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 419 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 420 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 421 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 422 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 423 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 424 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 425 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 426 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 427 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 428 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 429 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 430 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 431 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 432 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 433 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 434 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 435 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 436 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 437 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 438 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 439 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 440 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 441 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 442 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 443 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 444 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 445 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 446 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 447 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 448 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 449 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 450 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 451 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 452 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 453 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 454 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 455 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 456 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 457 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 458 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 459 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 460 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 461 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 462 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 463 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 464 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 465 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 466 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 467 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 468 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 469 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 470 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 471 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 472 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 473 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 474 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 475 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 476 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 477 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 478 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-17 11:56:02.445162 + +[31] Log opened at 2024-05-17 11:56:03.352350 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 871 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 16 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 17 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 18 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 20 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 22 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 24 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 25 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 27 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 28 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 29 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_remove -i 32 -d 310044 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 33 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 34 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 35 -n "$coste_envio" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 37 -n "$i" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 39 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 40 -n "$unidades_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 41 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 42 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 43 -n "$coste_envio[0]->coste" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 44 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 45 -n "$peso_libro" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 46 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 48 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 49 -n "$peso_calculo" -d 0 -c 0 +[31] [Step Debug] -> + +[32] Log opened at 2024-05-17 11:56:50.549264 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 16 +[31] [Step Debug] <- property_get -i 50 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 51 -n "$proporcion" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 52 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-17 11:57:16.979331 + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 11:57:20.001033 + +[32] Log opened at 2024-05-17 11:57:20.115669 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 16 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 11:57:21.363706 + +[33] Log opened at 2024-05-17 11:57:21.501803 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 16 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 11:57:25.531468 + +[33] Log opened at 2024-05-17 11:57:28.399990 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 16 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 11:57:40.184827 + +[33] Log opened at 2024-05-17 11:57:40.277101 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 16 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 11:57:41.437285 + +[24] Log opened at 2024-05-17 11:57:41.837830 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 16 +[29] Log opened at 2024-05-17 11:57:42.034575 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 16 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 11:57:43.818827 + +[29] [Step Debug] -> + +[29] Log closed at 2024-05-17 11:57:47.084619 + +[27] Log opened at 2024-05-17 11:58:48.081546 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 16 +[27] [Step Debug] -> + +[27] Log closed at 2024-05-17 11:58:59.511489 + +[27] Log opened at 2024-05-17 11:58:59.651395 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 16 +[27] [Step Debug] -> + +[27] Log closed at 2024-05-17 11:59:01.788415 + +[26] Log opened at 2024-05-17 11:59:01.962795 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 16 +[31] Log opened at 2024-05-17 11:59:02.105342 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[31] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[31] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[31] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[27] Log opened at 2024-05-17 11:59:02.123020 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 876 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 892 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1010 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 21 +[27] [Step Debug] <- run -i 16 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 11:59:04.245305 + +[27] [Step Debug] -> + +[27] Log closed at 2024-05-17 11:59:04.803691 + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-17 11:59:07.577523 + +[35] Log opened at 2024-05-17 11:59:55.988902 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 877 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1011 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 16 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:00:03.660320 + +[32] Log opened at 2024-05-17 12:00:15.824007 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 877 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1011 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 16 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:00:23.269781 + +[30] Log opened at 2024-05-17 12:01:09.848945 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 877 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 893 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1011 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 16 +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] [Step Debug] -> + +[30] Log closed at 2024-05-17 12:01:16.003085 + +[28] Log opened at 2024-05-17 12:02:11.716561 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 16 +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 17 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 18 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 20 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 22 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 23 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 24 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 27 -n "$coste_envio[0]->coste" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 28 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 29 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 31 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 36 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 37 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 38 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 39 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 40 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 41 -n "$coste_envio[0]->coste" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 42 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 44 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 45 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 47 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 48 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 49 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 50 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 51 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 52 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 53 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 54 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 55 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 56 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_value -i 57 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 58 +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 59 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 60 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 62 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 63 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 64 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 65 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 66 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 67 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 68 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 69 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 70 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_value -i 71 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 72 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 73 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 74 +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 75 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 76 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 77 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 78 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 79 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 80 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 81 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 82 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 83 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 84 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 85 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 86 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_value -i 87 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 88 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 89 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 90 +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 91 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 92 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 94 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 95 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 96 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 97 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 98 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 99 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 100 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 101 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 102 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_value -i 103 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 104 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 105 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 106 +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 107 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 108 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 110 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 111 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 112 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 113 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 114 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 115 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 116 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 117 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 118 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 119 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 120 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 121 +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 122 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 123 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 124 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 125 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 127 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 128 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 129 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 130 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 131 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 132 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 133 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 134 +[28] [Step Debug] -> + +[28] [Step Debug] <- stack_get -i 135 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 136 -n "$coste_envio" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 137 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 138 -n "$i" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- eval -i 139 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 140 -n "$proporcion" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 141 -n "$unidades_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 142 -n "$peso_calculo" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 143 -n "$coste_envio[0]" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- property_get -i 144 -n "$peso_libro" -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_names -i 145 -d 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- context_get -i 146 -d 0 -c 0 +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 147 +[28] [Step Debug] -> + +[28] Log closed at 2024-05-17 12:04:25.695129 + +[28] Log opened at 2024-05-17 12:04:30.132776 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 16 +[28] [Step Debug] -> + +[28] Log closed at 2024-05-17 12:04:41.020116 + +[28] Log opened at 2024-05-17 12:04:41.078091 +[28] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.28' +[28] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[28] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[28] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[28] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[28] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[28] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[28] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[28] [Step Debug] -> + +[28] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[28] [Step Debug] -> + +[28] [Step Debug] <- run -i 16 +[28] [Step Debug] -> + +[28] Log closed at 2024-05-17 12:04:42.727781 + +[29] Log opened at 2024-05-17 12:04:42.942740 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 16 +[26] Log opened at 2024-05-17 12:04:43.139787 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 16 +[29] [Step Debug] -> + +[29] Log closed at 2024-05-17 12:04:45.242715 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:04:50.349132 + +[35] Log opened at 2024-05-17 12:04:56.212846 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 16 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:05:11.133605 + +[35] Log opened at 2024-05-17 12:05:11.252462 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-05-17 12:05:11.271586 +[33] Log opened at 2024-05-17 12:05:11.271718 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[37] Log opened at 2024-05-17 12:05:11.271928 +[30] Log opened at 2024-05-17 12:05:11.271630 +[32] Log opened at 2024-05-17 12:05:11.271657 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] -> + +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] -> + +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[30] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[30] [Step Debug] -> + +[37] [Step Debug] -> + +[35] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[30] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[30] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[32] [Step Debug] -> + +[35] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[30] [Step Debug] -> + +[35] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[30] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[30] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[30] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[30] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[33] [Step Debug] -> + +[30] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[30] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[30] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[32] [Step Debug] -> + +[33] [Step Debug] -> + +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[30] [Step Debug] <- feature_set -i 14 -n notify_ok -v 1 +[24] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[30] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 14 -n notify_ok -v 1 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 12 -n max_children -v 100 +[33] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[37] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 15 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 13 -n max_data -v 8192 +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 15 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[30] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 14 -n notify_ok -v 1 +[32] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 15 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 14 -n notify_ok -v 1 +[37] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 15 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 15 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[35] [Step Debug] <- run -i 16 +[30] [Step Debug] <- run -i 16 +[32] [Step Debug] <- run -i 16 +[33] [Step Debug] <- run -i 16 +[37] [Step Debug] <- run -i 16 +[24] [Step Debug] <- run -i 16 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:05:12.306444 + +[35] Log opened at 2024-05-17 12:05:12.321983 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 16 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:05:14.689404 + +[33] Log opened at 2024-05-17 12:05:14.702531 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 16 +[30] [Step Debug] -> + +[30] Log closed at 2024-05-17 12:05:15.725578 + +[30] Log opened at 2024-05-17 12:05:15.742045 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 16 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:05:17.263375 + +[32] Log opened at 2024-05-17 12:05:17.277833 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 16 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:05:18.230107 + +[37] Log opened at 2024-05-17 12:05:18.243361 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 16 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:05:19.241479 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:05:19.639711 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:05:19.958554 + +[30] [Step Debug] -> + +[30] Log closed at 2024-05-17 12:05:20.346372 + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:05:21.550534 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:05:22.469637 + +[30] Log opened at 2024-05-17 12:05:22.550947 +[30] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.30' +[30] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[30] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[30] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[30] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[30] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[30] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[30] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[30] [Step Debug] -> + +[30] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[30] [Step Debug] -> + +[30] [Step Debug] <- run -i 16 +[37] Log opened at 2024-05-17 12:05:22.636027 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] Log opened at 2024-05-17 12:05:22.658495 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[37] [Step Debug] <- run -i 16 +[33] [Step Debug] <- run -i 16 +[30] [Step Debug] -> + +[30] Log closed at 2024-05-17 12:05:24.303177 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:05:26.417661 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:05:27.104445 + +[27] Log opened at 2024-05-17 12:05:32.570729 +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- run -i 16 +[27] [Step Debug] -> + +[27] Log closed at 2024-05-17 12:05:41.786909 + +[29] Log opened at 2024-05-17 12:05:56.974127 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 16 +[26] Log opened at 2024-05-17 12:05:59.096992 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 16 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:06:02.371132 + +[35] Log opened at 2024-05-17 12:06:02.433087 +[38] Log opened at 2024-05-17 12:06:02.433092 +[26] Log opened at 2024-05-17 12:06:02.432520 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[35] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[35] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[35] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[26] [Step Debug] <- run -i 29 +[38] [Step Debug] <- run -i 30 +[35] [Step Debug] <- run -i 29 +[29] [Step Debug] -> + +[29] Log closed at 2024-05-17 12:06:03.745620 + +[24] Log opened at 2024-05-17 12:06:03.809043 +[29] Log opened at 2024-05-17 12:06:03.808793 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[32] Log opened at 2024-05-17 12:06:03.809450 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[29] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[32] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[32] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[24] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[29] [Step Debug] -> + +[24] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[24] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[32] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[29] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[29] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[24] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[32] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[32] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[32] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[32] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[24] [Step Debug] <- run -i 29 +[29] [Step Debug] <- run -i 30 +[32] [Step Debug] <- run -i 28 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:06:04.645519 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:06:05.159022 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:06:05.883618 + +[29] [Step Debug] -> + +[29] Log closed at 2024-05-17 12:06:07.182128 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:06:08.268131 + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:06:09.015800 + +[33] Log opened at 2024-05-17 12:06:40.822496 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 16 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:06:44.196458 + +[33] Log opened at 2024-05-17 12:06:44.289867 +[27] Log opened at 2024-05-17 12:06:44.289858 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[27] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.27' +[37] Log opened at 2024-05-17 12:06:44.294281 +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[27] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[27] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[27] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[27] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[27] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[27] [Step Debug] -> + +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[27] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[27] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[27] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[27] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[27] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[27] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[27] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[27] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[27] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[27] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[27] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[27] [Step Debug] -> + +[37] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[37] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[27] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[27] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[27] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[27] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[37] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[27] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[27] [Step Debug] -> + +[27] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[27] [Step Debug] -> + +[33] [Step Debug] <- run -i 29 +[27] [Step Debug] <- run -i 30 +[37] [Step Debug] <- run -i 30 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:06:46.338493 + +[27] [Step Debug] -> + +[27] Log closed at 2024-05-17 12:06:46.715616 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:06:47.555303 + +[39] Log opened at 2024-05-17 12:08:09.221267 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 18 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 28 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 30 -n "$modelTarifaEnvio->getTarifaEnvio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 31 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 32 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 33 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 34 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 35 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 37 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 38 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 39 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 40 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 41 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 42 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 44 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 45 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 46 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 47 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 48 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 49 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 50 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 51 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 52 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 53 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 54 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 55 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 56 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 57 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 58 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 59 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 60 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 62 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 63 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 64 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 65 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 66 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 67 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 68 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 69 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 71 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 72 -n "$peso" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 73 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 74 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 75 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 76 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 77 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 79 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 80 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 81 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 82 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 83 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 84 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 85 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 86 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 87 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 88 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 89 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 90 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 91 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 93 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 94 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 95 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 96 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 97 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 98 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 99 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 100 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 101 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 102 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 103 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 104 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 105 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 106 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 107 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 108 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 109 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 110 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 111 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 112 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 113 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 114 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 115 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 116 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 117 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 118 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 119 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 120 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 121 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 122 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 123 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 124 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 125 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 126 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 127 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 128 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 129 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 130 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 131 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 132 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 133 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 134 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 135 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 136 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 137 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 138 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 139 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 140 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 141 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 142 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 143 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 144 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 145 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 146 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 147 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 148 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 149 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 150 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 151 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 152 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 153 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 154 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 155 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 156 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 157 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 158 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 159 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 160 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 161 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 162 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 163 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 164 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 165 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 166 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 167 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 168 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 169 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 170 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 171 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 172 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 173 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 174 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 175 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 176 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 177 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 178 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 179 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 180 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 181 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 182 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 183 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 184 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 185 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 186 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 187 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 188 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 189 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 190 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 191 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 192 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 193 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 194 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 195 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 196 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 197 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 198 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 199 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 200 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 201 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 202 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 203 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 204 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 205 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 206 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 207 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 208 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 209 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 210 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 211 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 212 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 213 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 214 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 215 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 216 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 217 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 218 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 219 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 220 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 221 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 222 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 223 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 224 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 225 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 226 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 227 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 228 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 229 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 230 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 231 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 232 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 233 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 234 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 235 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 236 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 237 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 238 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 239 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 240 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 241 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 242 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 243 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 244 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 245 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 246 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 247 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 248 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 249 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 250 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 251 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 252 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 253 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 254 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 255 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 256 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 257 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 258 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 259 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 260 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 261 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 262 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 263 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 264 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 265 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 266 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 267 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 268 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 269 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 270 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:09:10.263159 + +[39] Log opened at 2024-05-17 12:09:11.574867 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 18 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 28 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 30 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 31 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 36 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 37 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 38 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 39 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 40 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 41 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 42 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 43 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 45 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 47 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 48 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 49 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 50 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 51 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 52 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 53 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 54 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 56 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 58 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 59 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 60 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 61 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 62 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 63 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 64 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 65 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 66 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 67 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 68 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 69 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 70 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 72 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 73 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 74 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 75 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 76 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 77 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 78 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 79 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 81 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 82 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 83 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 84 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 85 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 86 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 87 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 88 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 89 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 90 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 91 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 92 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 94 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 95 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 96 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 97 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 98 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 99 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 101 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 102 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 103 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 104 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 105 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 106 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 107 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 108 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 109 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 110 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 111 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 112 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 113 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 114 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 115 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 116 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 117 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 118 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 119 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 120 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 121 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 122 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 123 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 124 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 125 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 126 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 127 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 128 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 129 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 130 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 131 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 132 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 133 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 134 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 135 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 136 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 137 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 138 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 139 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 140 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 141 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 143 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 144 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 145 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 146 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 147 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 148 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 149 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 150 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 151 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 152 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 153 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 154 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 155 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 156 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 157 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 158 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 159 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 160 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 161 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 162 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 163 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 164 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 165 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 166 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 167 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 168 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 169 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 170 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 171 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 172 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 173 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 174 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 175 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 176 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 177 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 178 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 179 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 180 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 181 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 182 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 183 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 184 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 185 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 186 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 187 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 188 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 189 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 190 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 191 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 192 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 193 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 194 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 195 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 196 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 197 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 198 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 199 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 200 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 201 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 202 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 203 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 204 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 205 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 206 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 207 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 208 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 209 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 210 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 211 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 212 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 213 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 214 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 215 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 216 -d 0 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:09:24.302498 + +[39] Log opened at 2024-05-17 12:09:27.280755 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 18 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 28 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 30 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 31 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 36 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 37 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 38 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 39 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 40 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 41 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 43 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 44 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 45 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 47 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 48 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 49 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 50 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 51 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 52 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 53 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 54 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 56 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 57 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 58 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 60 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 62 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 63 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 64 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 65 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 66 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 67 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 69 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 70 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 71 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 73 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 75 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 76 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 77 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 78 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 79 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 80 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 82 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 83 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 84 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 86 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 87 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 88 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 89 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 90 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 91 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 92 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 93 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 95 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 96 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 97 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 99 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 101 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 102 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 103 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 104 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 105 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 106 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 108 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 109 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 110 -n "$modelTarifaEnvio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 111 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 112 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 113 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 115 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 116 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 117 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 118 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 119 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 120 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 121 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 122 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 123 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 124 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 125 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 126 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 127 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 128 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 129 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 130 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 131 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 132 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 133 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 134 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 135 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 136 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 137 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 138 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 139 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 140 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 142 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 143 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 144 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 145 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 146 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 147 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 148 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 149 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 150 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 151 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 152 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 153 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 154 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 155 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 156 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 157 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 158 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 159 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 160 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 161 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 162 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 163 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 164 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 165 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 166 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 167 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 168 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 169 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 170 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 171 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 172 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 173 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 174 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 175 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 176 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 177 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 178 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 179 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 180 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 181 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 182 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 183 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 184 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 185 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 186 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 187 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 188 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 189 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 190 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 191 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 192 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 193 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 194 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 195 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 196 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 197 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 198 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 199 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 200 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 201 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 202 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 203 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 204 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 205 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 206 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 207 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 208 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 209 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 210 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 211 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 212 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 213 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 214 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 215 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 216 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 217 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 218 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 219 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 220 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 221 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 222 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 223 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 224 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 225 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 226 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 227 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 228 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 229 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 230 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 231 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 232 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 233 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 234 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 235 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 236 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 237 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 238 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 239 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 240 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 241 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 242 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 243 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 244 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 245 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 246 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 247 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 248 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 249 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 250 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 251 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 252 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 253 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 254 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 255 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 256 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 257 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 258 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 259 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 260 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 261 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 262 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 263 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 264 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 265 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 266 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 267 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 268 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 269 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 270 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 271 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 272 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 273 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 274 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 275 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 276 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 277 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 278 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 279 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 280 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 281 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 282 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 283 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 284 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 285 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 286 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 287 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 288 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 289 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 290 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 291 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 292 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 293 -d 0 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:11:17.453207 + +[39] Log opened at 2024-05-17 12:11:18.814140 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 18 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 28 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 30 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 31 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 36 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 37 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 38 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 39 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 40 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 41 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 43 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 44 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 45 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 47 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 48 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 49 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 50 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 51 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 52 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 53 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 54 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 56 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 57 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 58 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 60 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 62 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 63 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 64 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 65 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 66 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 67 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 69 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 70 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 71 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 73 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 75 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 76 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 77 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 78 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 79 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 80 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 82 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 83 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 84 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 86 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 87 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 88 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 89 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 90 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 91 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 92 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 93 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 95 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 96 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 97 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 99 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 101 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 102 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 103 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 104 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 105 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 106 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 108 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 109 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 110 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 111 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 112 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 113 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 115 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 116 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 117 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 118 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 119 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 120 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 121 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 122 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 123 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 124 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 125 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 127 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 129 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 130 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 131 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 132 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 133 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 134 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 135 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 136 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 137 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 138 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 139 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 140 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 141 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 143 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 144 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 145 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 146 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 147 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 148 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 149 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 150 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 151 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 152 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 153 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 154 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 155 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 156 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 157 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 158 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 159 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 160 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 161 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 162 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 163 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 164 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 165 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 166 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 167 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 168 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 169 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 170 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 171 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 172 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 173 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 174 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 175 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 176 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 177 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 178 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 179 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 180 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 181 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 182 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 183 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 184 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 185 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 186 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 187 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 188 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 189 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 190 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 191 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 192 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 193 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 194 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 195 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 196 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 197 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 198 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 199 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 200 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 201 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 202 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 203 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 204 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 205 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 206 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 207 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 208 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 209 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 210 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 211 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 212 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 213 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 214 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 215 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 216 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 217 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 218 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 219 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 220 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 221 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 222 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 223 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 224 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 225 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 226 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 227 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 228 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 229 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 230 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 231 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 232 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 233 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 234 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 235 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 236 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 237 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 238 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 239 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 240 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 241 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 242 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 243 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 244 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 245 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 246 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 247 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 248 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 249 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 250 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 251 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 252 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 253 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 254 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 255 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 256 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 257 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 258 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 259 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 260 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 261 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 262 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 263 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 264 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 265 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 266 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 267 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 268 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 269 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 270 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 271 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 272 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 273 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 274 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 275 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 276 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 277 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 278 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 279 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 280 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 281 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 282 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 283 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 284 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 285 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 286 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 287 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 288 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 289 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 290 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 291 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 292 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 293 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 294 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 295 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 296 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 297 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 298 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 299 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 300 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 301 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 302 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 303 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 304 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 305 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 306 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 307 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 308 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 309 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 310 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 311 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 312 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 313 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 314 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 315 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 316 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 317 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 318 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 319 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 320 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 321 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 322 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 323 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 324 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 325 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 326 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 327 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 328 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 329 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 330 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 331 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 332 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 333 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 334 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 335 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 336 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 337 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 338 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 339 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 340 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 341 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 343 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 344 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 345 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 346 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 347 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 348 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 349 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 350 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 351 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 352 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 353 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 354 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 355 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 356 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 357 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 358 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 359 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 360 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 361 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 362 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 363 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 364 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 365 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 366 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 367 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 368 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 369 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 370 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 371 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 372 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 373 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 374 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 375 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 376 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 377 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 378 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 379 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 380 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 381 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 382 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 383 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 384 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 385 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 386 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 387 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 388 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 389 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 390 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 391 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 392 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 393 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 394 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 395 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 396 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 397 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 398 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 399 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 400 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 401 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 402 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 403 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 404 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 405 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 406 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 407 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 408 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 409 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 410 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 411 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 412 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 413 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 414 -d 0 -c 0 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:13:21.841810 + +[39] Log opened at 2024-05-17 12:13:23.015565 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 18 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 19 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 23 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 28 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 30 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 31 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 36 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 37 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 38 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 39 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 40 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 41 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 43 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 44 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 45 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 47 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 48 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 49 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 50 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 51 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 52 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 53 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 54 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 56 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 57 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 58 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 60 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 62 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 63 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 64 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 65 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 66 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 67 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 69 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 70 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 71 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 73 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 75 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 76 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 77 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 78 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 79 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 80 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 81 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 82 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 83 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 84 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 86 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 87 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 88 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 89 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 90 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 91 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 92 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 93 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 94 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 95 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 96 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 97 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 99 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 100 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 101 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 102 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 103 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 104 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 105 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 106 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 107 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 108 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 110 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 111 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 112 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 113 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 114 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 115 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 116 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 117 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 118 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 119 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 120 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 121 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 122 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 123 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 124 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 125 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 126 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 127 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 128 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 129 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 130 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 131 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 132 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 133 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 134 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 135 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 136 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 137 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 138 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 139 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 140 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 141 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 142 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 143 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 144 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 145 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 146 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 147 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 148 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 149 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 150 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 151 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 152 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 153 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 154 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 155 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 156 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 157 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 158 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 159 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 160 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 161 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 162 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 163 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 164 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 165 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 166 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 167 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 168 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 169 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 170 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 171 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 172 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 173 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 174 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 175 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 176 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 177 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 178 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 179 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 180 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 181 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 182 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 183 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 184 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 185 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 186 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 187 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 188 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 189 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 190 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 191 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 192 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 193 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 194 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 195 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 196 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 197 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 198 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 199 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 200 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 201 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- step_over -i 202 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 203 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 204 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 205 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 206 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 207 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 208 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 209 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 210 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 211 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 212 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 213 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 214 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 215 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 216 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 217 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 218 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 219 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 220 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 221 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 222 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 223 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 224 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 225 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 226 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 227 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 228 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 229 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 230 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 231 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 232 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 233 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 234 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 235 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 236 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 237 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 238 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 239 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 240 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 241 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 242 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 243 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 244 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 245 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 246 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 247 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 248 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 249 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 250 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 251 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 252 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 253 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 254 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 255 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 256 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 257 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 258 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 259 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 260 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 261 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 262 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 263 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 264 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 265 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 266 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 267 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 268 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 269 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 270 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 271 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 272 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 273 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 274 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 275 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 276 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 277 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 278 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 279 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 280 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 281 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 282 -n "$tarifas_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 283 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 284 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 285 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 286 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 287 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 288 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 289 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 290 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 291 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 292 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 293 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 294 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 295 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 296 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 297 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 298 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 299 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 300 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 301 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 302 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 303 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 304 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 305 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 306 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 307 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 308 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 309 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 310 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 311 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_value -i 312 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 313 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 314 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 315 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 316 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 317 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 318 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 319 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 320 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 321 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 322 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 323 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 324 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 325 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 326 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 327 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 328 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 329 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 330 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 331 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 332 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 333 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 334 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 335 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 336 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 337 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 338 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 339 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 340 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 341 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 342 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 343 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 344 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 345 -n "$coste_envio" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 346 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 347 -n "$i" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- eval -i 348 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 349 -n "$proporcion" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 350 -n "$unidades_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 351 -n "$peso_calculo" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 352 -n "$coste_envio[0]" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 353 -n "$peso_libro" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 354 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 355 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 356 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:15:11.818646 + +[35] Log opened at 2024-05-17 12:15:46.211688 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 18 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 19 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 21 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 23 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 28 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 30 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 31 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 32 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 34 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 36 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 37 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 38 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 39 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 40 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 41 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 43 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 44 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 45 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 47 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 48 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 49 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 50 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 51 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 52 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 53 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 54 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 56 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 57 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 58 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 60 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 62 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 63 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 64 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 65 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 66 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 67 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 69 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 70 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 71 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 73 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 75 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 76 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 77 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 78 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 79 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 80 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 81 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 82 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 83 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 84 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 86 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 87 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 88 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 89 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 90 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 91 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 92 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 93 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 94 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 95 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 96 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 97 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 99 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 100 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 101 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 102 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 103 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 104 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 105 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 106 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 107 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 108 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 110 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 111 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 112 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 113 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 114 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 115 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 116 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 117 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 118 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 119 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 120 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 121 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 122 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 123 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 124 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 125 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 126 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 127 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 128 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 129 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 130 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 131 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 132 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 133 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 134 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 136 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 137 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 138 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 139 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 140 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 141 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 142 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 143 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 144 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 145 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 146 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 147 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 148 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 149 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 150 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 151 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 152 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 153 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 154 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 155 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 156 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 157 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_value -i 158 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 159 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 160 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 161 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 162 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 163 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 164 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 165 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 166 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 167 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 168 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 169 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 170 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 171 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 172 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 173 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 174 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 175 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 176 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 177 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 178 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 179 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 180 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 181 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 182 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 183 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 184 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 185 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 186 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 187 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 188 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 189 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 190 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 191 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 192 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 193 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 194 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 195 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 196 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 197 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 198 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 199 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 200 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 201 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 202 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 203 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 204 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 205 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 206 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 207 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 208 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 209 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 210 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 211 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 212 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 213 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 214 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 215 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 216 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 217 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 218 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 219 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 220 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 221 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 222 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 223 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 224 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 225 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 226 -n "$tarifas_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 227 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 228 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 229 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 230 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 231 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 232 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 233 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 234 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 235 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 236 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 237 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 238 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 239 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 240 -n "$tarifas_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 241 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 242 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 243 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 244 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 245 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 246 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 247 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 248 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 249 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 250 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 251 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 252 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 253 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_value -i 254 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 255 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 256 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 257 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 258 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 259 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 260 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 261 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 262 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 263 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 264 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 265 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 266 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 267 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 268 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 269 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 270 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 271 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 272 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 273 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 274 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 275 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 276 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 277 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 278 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 279 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 280 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 281 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 282 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 283 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 284 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 285 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 286 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 287 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 288 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 289 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 290 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 291 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 292 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 293 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 294 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 295 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 296 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 297 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 298 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 299 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 300 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 301 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 302 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 303 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 304 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 305 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 306 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 307 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 308 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- step_over -i 309 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 310 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 311 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 312 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 313 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 314 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 315 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 316 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 317 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 318 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 319 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 320 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 321 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 322 -n "$tarifas_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 323 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 324 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 325 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 326 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 327 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 328 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 329 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 330 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 331 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 332 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 333 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 334 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 335 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 336 -n "$tarifas_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 337 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 338 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 339 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 340 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 341 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 342 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 343 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 344 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 345 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 346 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 347 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 348 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 349 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_value -i 350 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 351 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 352 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 353 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 354 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 355 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 356 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 357 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 358 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 359 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 360 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 361 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 362 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 363 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 364 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 365 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_value -i 366 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 367 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 368 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 369 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 370 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 371 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 372 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 373 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 374 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 375 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 376 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 377 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 378 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 379 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 380 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 381 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 382 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 383 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 384 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 385 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 386 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 387 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 388 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 389 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 390 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 391 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 392 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 393 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 394 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 395 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 396 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 397 +[35] [Step Debug] -> + +[35] [Step Debug] <- stack_get -i 398 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 399 -n "$coste_envio" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 400 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 401 -n "$i" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- eval -i 402 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 403 -n "$proporcion" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 404 -n "$unidades_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 405 -n "$peso_calculo" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 406 -n "$coste_envio[0]" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- property_get -i 407 -n "$peso_libro" -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_names -i 408 -d 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- context_get -i 409 -d 0 -c 0 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 410 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:19:30.530586 + +[26] Log opened at 2024-05-17 12:19:42.623790 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:19:48.806379 + +[26] Log opened at 2024-05-17 12:19:48.861712 +[29] Log opened at 2024-05-17 12:19:48.861695 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] Log opened at 2024-05-17 12:19:48.864964 +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[29] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[26] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[29] [Step Debug] -> + +[24] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] -> + +[26] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[29] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[29] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[26] [Step Debug] <- run -i 33 +[29] [Step Debug] <- run -i 33 +[24] [Step Debug] <- run -i 33 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:19:51.252199 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:19:51.976036 + +[29] [Step Debug] -> + +[29] Log closed at 2024-05-17 12:19:53.339322 + +[38] Log opened at 2024-05-17 12:19:57.075904 +[33] Log opened at 2024-05-17 12:19:57.075868 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- run -i 25 +[33] [Step Debug] <- run -i 25 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:19:59.205284 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:19:59.227475 + +[33] Log opened at 2024-05-17 12:19:59.238219 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[38] Log opened at 2024-05-17 12:19:59.323660 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:20:02.109148 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:20:02.164666 + +[37] Log opened at 2024-05-17 12:20:07.016568 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 17 +[37] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:20:19.761841 + +[37] Log opened at 2024-05-17 12:20:19.956625 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] Log opened at 2024-05-17 12:20:19.962513 +[32] Log opened at 2024-05-17 12:20:19.963095 +[26] Log opened at 2024-05-17 12:20:19.962886 +[24] Log opened at 2024-05-17 12:20:19.963011 +[35] Log opened at 2024-05-17 12:20:19.963274 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] -> + +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] -> + +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[32] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[32] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[32] [Step Debug] -> + +[35] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[37] [Step Debug] -> + +[32] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[37] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[35] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[35] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[39] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[37] [Step Debug] <- run -i 17 +[24] [Step Debug] <- run -i 17 +[26] [Step Debug] <- run -i 17 +[39] [Step Debug] <- run -i 17 +[35] [Step Debug] <- run -i 17 +[32] [Step Debug] <- run -i 17 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:20:20.873248 + +[37] Log opened at 2024-05-17 12:20:20.893007 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:20:22.685396 + +[24] Log opened at 2024-05-17 12:20:22.702827 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:20:23.188397 + +[26] Log opened at 2024-05-17 12:20:23.211356 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:20:23.668291 + +[35] Log opened at 2024-05-17 12:20:23.682634 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:20:25.249614 + +[39] Log opened at 2024-05-17 12:20:25.265668 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:20:26.250388 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:20:26.682483 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:20:27.035195 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:20:27.330614 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:20:28.183968 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:20:29.207803 + +[26] Log opened at 2024-05-17 12:20:29.308262 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[39] Log opened at 2024-05-17 12:20:29.439447 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[24] Log opened at 2024-05-17 12:20:29.441155 +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- run -i 25 +[24] [Step Debug] <- run -i 25 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:20:31.082059 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:20:31.902062 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:20:33.073996 + +[29] Log opened at 2024-05-17 12:22:18.059517 +[29] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.29' +[29] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[29] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[29] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[29] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[29] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[29] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[29] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[29] [Step Debug] -> + +[29] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[29] [Step Debug] -> + +[29] [Step Debug] <- run -i 17 +[29] [Step Debug] -> + +[29] Log closed at 2024-05-17 12:22:23.489217 + +[38] Log opened at 2024-05-17 12:23:44.247463 +[33] Log opened at 2024-05-17 12:23:44.247424 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[40] Log opened at 2024-05-17 12:23:44.247567 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 33 +[33] [Step Debug] <- run -i 33 +[40] [Step Debug] <- run -i 33 +[32] Log opened at 2024-05-17 12:23:46.738565 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:23:47.451205 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:23:48.594440 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:23:50.726091 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:24:01.904050 + +[32] Log opened at 2024-05-17 12:24:02.135485 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] Log opened at 2024-05-17 12:24:02.144806 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[35] Log opened at 2024-05-17 12:24:02.145727 +[26] Log opened at 2024-05-17 12:24:02.145942 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[24] Log opened at 2024-05-17 12:24:02.146103 +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[32] [Step Debug] -> + +[39] Log opened at 2024-05-17 12:24:02.147372 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] -> + +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] -> + +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] -> + +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[39] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[32] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[37] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[32] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[35] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[37] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[35] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[32] [Step Debug] -> + +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[24] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[26] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[35] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[39] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[24] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[35] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[39] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[26] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[32] [Step Debug] <- run -i 17 +[37] [Step Debug] <- run -i 17 +[26] [Step Debug] <- run -i 17 +[35] [Step Debug] <- run -i 17 +[24] [Step Debug] <- run -i 17 +[39] [Step Debug] <- run -i 17 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:24:03.361376 + +[32] Log opened at 2024-05-17 12:24:03.380128 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:24:05.675594 + +[24] Log opened at 2024-05-17 12:24:05.688785 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:24:07.222290 + +[37] Log opened at 2024-05-17 12:24:07.247235 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:24:08.247735 + +[35] Log opened at 2024-05-17 12:24:08.262058 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:24:09.231072 + +[26] Log opened at 2024-05-17 12:24:09.244187 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:24:10.165262 + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:24:10.468042 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:24:10.830561 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:24:11.148186 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:24:12.144627 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:24:12.727106 + +[37] Log opened at 2024-05-17 12:24:12.812414 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 17 +[26] Log opened at 2024-05-17 12:24:12.915440 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[24] Log opened at 2024-05-17 12:24:12.946047 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] -> + +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:24:14.475081 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:24:16.002601 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:24:17.588234 + +[37] Log opened at 2024-05-17 12:24:18.688514 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 17 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:24:26.551988 + +[38] Log opened at 2024-05-17 12:24:35.467080 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:24:41.364663 + +[40] Log opened at 2024-05-17 12:24:41.523242 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] Log opened at 2024-05-17 12:24:41.527994 +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] Log opened at 2024-05-17 12:24:41.529155 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- run -i 29 +[40] [Step Debug] <- run -i 29 +[33] [Step Debug] <- run -i 29 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:24:43.709236 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:24:45.275195 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:24:46.743331 + +[41] Log opened at 2024-05-17 12:25:16.843092 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 17 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-17 12:25:22.236594 + +[39] Log opened at 2024-05-17 12:25:22.782614 +[41] Log opened at 2024-05-17 12:25:22.782669 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] Log opened at 2024-05-17 12:25:22.786640 +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[32] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[32] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[32] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[32] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[32] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[41] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[32] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[41] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[41] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[32] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[32] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[32] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[32] [Step Debug] -> + +[41] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[32] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[32] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[32] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[32] [Step Debug] -> + +[39] [Step Debug] -> + +[41] [Step Debug] <- run -i 33 +[32] [Step Debug] <- run -i 33 +[39] [Step Debug] <- run -i 33 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-17 12:25:24.740326 + +[41] [Step Debug] -> + +[41] Log closed at 2024-05-17 12:25:24.822430 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:25:25.315449 + +[35] Log opened at 2024-05-17 12:25:31.118587 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:25:37.511529 + +[24] Log opened at 2024-05-17 12:26:00.654436 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[37] Log opened at 2024-05-17 12:26:00.658714 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] Log opened at 2024-05-17 12:26:00.661506 +[37] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[37] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[37] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[37] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[37] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[37] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[37] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[37] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[37] [Step Debug] -> + +[26] [Step Debug] -> + +[37] [Step Debug] <- run -i 33 +[24] [Step Debug] <- run -i 33 +[26] [Step Debug] <- run -i 33 +[35] Log opened at 2024-05-17 12:26:02.449492 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:26:02.859294 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:26:03.484102 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-17 12:26:04.042165 + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:26:22.238452 + +[35] Log opened at 2024-05-17 12:26:22.465432 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[38] Log opened at 2024-05-17 12:26:22.850242 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] Log opened at 2024-05-17 12:26:22.869745 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] -> + +[40] Log opened at 2024-05-17 12:26:22.875171 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] Log opened at 2024-05-17 12:26:22.881932 +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] -> + +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] -> + +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] Log opened at 2024-05-17 12:26:22.893487 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] -> + +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] -> + +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[41] [Step Debug] -> + +[40] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[40] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[41] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[41] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[41] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[41] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[38] [Step Debug] <- run -i 25 +[41] [Step Debug] <- run -i 17 +[39] [Step Debug] <- run -i 19 +[33] [Step Debug] <- run -i 22 +[40] [Step Debug] <- run -i 19 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:26:24.085280 + +[35] Log opened at 2024-05-17 12:26:24.101547 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-17 12:26:25.813969 + +[41] Log opened at 2024-05-17 12:26:25.828468 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 17 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:26:26.749916 + +[33] Log opened at 2024-05-17 12:26:26.762748 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:26:27.749111 + +[40] Log opened at 2024-05-17 12:26:27.765285 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:26:28.701398 + +[39] Log opened at 2024-05-17 12:26:28.714511 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:26:30.226653 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:26:30.704481 + +[41] [Step Debug] -> + +[41] Log closed at 2024-05-17 12:26:30.973288 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:26:31.638954 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:26:32.108947 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:26:33.108011 + +[38] Log opened at 2024-05-17 12:26:33.223819 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[33] Log opened at 2024-05-17 12:26:33.362895 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[40] Log opened at 2024-05-17 12:26:33.379375 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[33] [Step Debug] <- run -i 21 +[40] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:26:34.892617 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:26:36.408480 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:26:37.356377 + +[26] Log opened at 2024-05-17 12:29:20.399182 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:29:38.654591 + +[26] Log opened at 2024-05-17 12:29:38.838715 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-05-17 12:29:38.846849 +[39] Log opened at 2024-05-17 12:29:38.847282 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[33] Log opened at 2024-05-17 12:29:38.846638 +[24] Log opened at 2024-05-17 12:29:38.847312 +[40] Log opened at 2024-05-17 12:29:38.846767 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] -> + +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] -> + +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[40] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[40] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[38] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[39] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[24] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[39] [Step Debug] <- run -i 17 +[24] [Step Debug] <- run -i 17 +[38] [Step Debug] <- run -i 17 +[26] [Step Debug] <- run -i 17 +[40] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:29:40.180225 + +[26] Log opened at 2024-05-17 12:29:40.199399 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:29:42.954753 + +[39] Log opened at 2024-05-17 12:29:42.975787 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:29:43.974448 + +[38] Log opened at 2024-05-17 12:29:43.990771 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:29:44.953458 + +[33] Log opened at 2024-05-17 12:29:44.972597 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:29:45.906839 + +[24] Log opened at 2024-05-17 12:29:45.920653 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:29:46.838121 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:29:47.217507 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:29:47.586265 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:29:47.846567 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:29:48.559976 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:29:49.725235 + +[38] Log opened at 2024-05-17 12:29:49.822352 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[24] Log opened at 2024-05-17 12:29:49.925428 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[39] Log opened at 2024-05-17 12:29:49.937689 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 23 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:29:51.599198 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:29:53.027875 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:29:55.354888 + +[35] Log opened at 2024-05-17 12:30:12.738165 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[41] Log opened at 2024-05-17 12:30:19.342554 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:30:20.174222 + +[35] Log opened at 2024-05-17 12:30:22.546042 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] Log opened at 2024-05-17 12:30:22.564561 +[35] [Step Debug] -> + +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[43] Log opened at 2024-05-17 12:30:22.565223 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[43] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] -> + +[35] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] -> + +[35] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[42] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[35] [Step Debug] <- run -i 17 +[43] [Step Debug] <- run -i 16 +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 16 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-17 12:30:24.451102 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:30:25.013628 + +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 17 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:30:26.635640 + +[42] Log opened at 2024-05-17 12:30:26.956384 +[35] Log opened at 2024-05-17 12:30:26.956290 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[41] Log opened at 2024-05-17 12:30:26.956797 +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[41] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[41] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[41] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[41] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[35] [Step Debug] -> + +[41] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[41] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[41] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[41] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[41] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[41] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[41] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[41] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[41] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[41] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[35] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[35] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[41] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[35] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[35] [Step Debug] -> + +[41] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[41] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[41] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[41] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[41] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[41] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[42] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[41] [Step Debug] -> + +[42] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[41] [Step Debug] -> + +[35] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[41] [Step Debug] -> + +[42] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[41] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[41] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[41] [Step Debug] -> + +[35] [Step Debug] -> + +[41] [Step Debug] <- run -i 31 +[35] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 33 +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 33 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 17 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] Log closed at 2024-05-17 12:30:28.095455 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:30:29.070639 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:30:29.786112 + +[41] [Step Debug] -> + +[41] Log closed at 2024-05-17 12:30:30.486087 + +[40] Log opened at 2024-05-17 12:30:39.998683 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:30:42.770841 + +[33] Log opened at 2024-05-17 12:31:09.196923 +[38] Log opened at 2024-05-17 12:31:09.196965 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[26] Log opened at 2024-05-17 12:31:09.196981 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[33] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 32 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- run -i 32 +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 33 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:31:11.131807 + +[33] Log opened at 2024-05-17 12:31:11.326641 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:31:11.697618 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:31:12.964335 + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:31:23.568134 + +[33] Log opened at 2024-05-17 12:31:23.747346 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-05-17 12:31:23.753977 +[24] Log opened at 2024-05-17 12:31:23.754014 +[35] Log opened at 2024-05-17 12:31:23.753948 +[39] Log opened at 2024-05-17 12:31:23.754548 +[43] Log opened at 2024-05-17 12:31:23.754061 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] -> + +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[43] [Step Debug] -> + +[24] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] -> + +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[42] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[35] [Step Debug] -> + +[43] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[35] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[43] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] -> + +[43] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[43] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[39] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[35] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[35] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[43] [Step Debug] -> + +[35] [Step Debug] -> + +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] <- run -i 23 +[35] [Step Debug] <- run -i 23 +[33] [Step Debug] <- run -i 23 +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 23 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 23 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 22 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 23 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:31:24.615034 + +[33] Log opened at 2024-05-17 12:31:24.629780 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[43] [Step Debug] -> + +[43] Log closed at 2024-05-17 12:31:26.022808 + +[43] Log opened at 2024-05-17 12:31:26.039342 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:31:26.728979 + +[39] Log opened at 2024-05-17 12:31:26.742857 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:31:27.141177 + +[35] Log opened at 2024-05-17 12:31:27.161744 +[35] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.35' +[35] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[35] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[35] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[35] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[35] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[35] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[35] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[35] [Step Debug] -> + +[35] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[35] [Step Debug] -> + +[35] [Step Debug] <- run -i 17 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:31:27.611481 + +[42] Log opened at 2024-05-17 12:31:27.628316 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:31:28.017351 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:31:28.385173 + +[43] [Step Debug] -> + +[43] Log closed at 2024-05-17 12:31:28.810338 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:31:29.226244 + +[35] [Step Debug] -> + +[35] Log closed at 2024-05-17 12:31:29.662010 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:31:30.492604 + +[33] Log opened at 2024-05-17 12:31:30.587446 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[39] Log opened at 2024-05-17 12:31:30.697202 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[42] Log opened at 2024-05-17 12:31:30.713196 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 22 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:31:32.232126 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:31:33.019055 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:31:33.942621 + +[40] Log opened at 2024-05-17 12:31:59.096111 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:32:05.437043 + +[26] Log opened at 2024-05-17 12:32:13.473955 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[38] Log opened at 2024-05-17 12:32:19.509619 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:32:19.688293 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:32:24.099014 + +[38] Log opened at 2024-05-17 12:32:28.362273 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:32:31.203893 + +[44] Log opened at 2024-05-17 12:34:03.737726 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:34:22.665375 + +[44] Log opened at 2024-05-17 12:34:22.854946 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] Log opened at 2024-05-17 12:34:22.860908 +[24] Log opened at 2024-05-17 12:34:22.861375 +[40] Log opened at 2024-05-17 12:34:22.861065 +[39] Log opened at 2024-05-17 12:34:22.861135 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[38] Log opened at 2024-05-17 12:34:22.861754 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] -> + +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[39] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[38] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[40] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[39] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[38] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[26] [Step Debug] <- run -i 17 +[38] [Step Debug] <- run -i 17 +[40] [Step Debug] <- run -i 17 +[24] [Step Debug] <- run -i 17 +[39] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:34:23.887288 + +[44] Log opened at 2024-05-17 12:34:23.902033 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:34:26.345844 + +[24] Log opened at 2024-05-17 12:34:26.357958 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:34:27.334422 + +[26] Log opened at 2024-05-17 12:34:27.347632 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:34:28.334629 + +[40] Log opened at 2024-05-17 12:34:28.348203 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:34:29.844566 + +[39] Log opened at 2024-05-17 12:34:29.859554 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:34:30.711333 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:34:31.057175 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:34:31.358944 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:34:31.633859 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:34:32.506285 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:34:33.713405 + +[26] Log opened at 2024-05-17 12:34:33.825332 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[39] Log opened at 2024-05-17 12:34:33.948166 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[24] Log opened at 2024-05-17 12:34:33.950259 +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 25 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 25 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:34:35.540362 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:34:36.337961 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:34:36.986446 + +[43] Log opened at 2024-05-17 12:34:48.778233 +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 17 +[43] [Step Debug] -> + +[43] Log closed at 2024-05-17 12:34:54.331123 + +[33] Log opened at 2024-05-17 12:34:56.651401 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[42] Log opened at 2024-05-17 12:34:56.653574 +[43] Log opened at 2024-05-17 12:34:56.653871 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[43] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.43' +[43] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[43] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[43] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[43] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[43] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[43] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[43] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[43] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[43] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[43] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[43] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[43] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[43] [Step Debug] -> + +[33] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[43] [Step Debug] -> + +[43] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[43] [Step Debug] -> + +[43] [Step Debug] <- run -i 33 +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 33 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 33 +[43] [Step Debug] -> + +[43] Log closed at 2024-05-17 12:34:59.002336 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:35:00.525511 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:35:04.443467 + +[42] Log opened at 2024-05-17 12:35:06.565503 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 17 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:35:10.825194 + +[38] Log opened at 2024-05-17 12:35:16.991242 +[44] Log opened at 2024-05-17 12:35:16.991263 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] Log opened at 2024-05-17 12:35:16.994776 +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[45] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[45] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[45] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[45] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[45] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 32 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 32 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 33 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:35:18.846781 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:35:19.396497 + +[45] [Step Debug] -> + +[45] Log closed at 2024-05-17 12:35:22.773613 + +[38] Log opened at 2024-05-17 12:35:24.308895 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:35:28.028218 + +[40] Log opened at 2024-05-17 12:38:59.054893 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:39:19.951444 + +[40] Log opened at 2024-05-17 12:39:20.163645 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-05-17 12:39:20.170737 +[42] Log opened at 2024-05-17 12:39:20.170803 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[45] Log opened at 2024-05-17 12:39:20.172205 +[44] Log opened at 2024-05-17 12:39:20.172164 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[33] Log opened at 2024-05-17 12:39:20.173629 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] -> + +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] -> + +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[42] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[45] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] -> + +[42] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[45] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[45] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[45] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[40] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[45] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[45] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[45] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[45] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[45] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[45] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[45] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[45] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[42] [Step Debug] -> + +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[40] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[45] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[44] [Step Debug] -> + +[45] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[42] [Step Debug] -> + +[45] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[45] [Step Debug] -> + +[44] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] <- run -i 35 +[44] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[33] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 35 +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] <- breakpoint_set -i 33 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] <- breakpoint_set -i 35 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 34 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 35 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[40] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 35 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- run -i 36 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 35 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[42] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 36 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 37 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 37 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 37 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- run -i 38 +[42] [Step Debug] <- breakpoint_set -i 38 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 38 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 39 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 40 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 41 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 42 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:39:21.418197 + +[40] Log opened at 2024-05-17 12:39:21.437005 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:39:24.117967 + +[44] Log opened at 2024-05-17 12:39:24.131863 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:39:25.112133 + +[38] Log opened at 2024-05-17 12:39:25.126497 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[45] [Step Debug] -> + +[45] Log closed at 2024-05-17 12:39:26.091595 + +[45] Log opened at 2024-05-17 12:39:26.105042 +[45] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.45' +[45] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[45] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[45] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[45] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[45] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[45] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[45] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[45] [Step Debug] -> + +[45] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[45] [Step Debug] -> + +[45] [Step Debug] <- run -i 17 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:39:27.073975 + +[33] Log opened at 2024-05-17 12:39:27.087254 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:39:28.618426 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:39:28.990935 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:39:29.789055 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:39:30.942920 + +[45] [Step Debug] -> + +[45] Log closed at 2024-05-17 12:39:31.979817 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:39:32.777739 + +[38] Log opened at 2024-05-17 12:39:33.188491 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[33] Log opened at 2024-05-17 12:39:33.378385 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] Log opened at 2024-05-17 12:39:33.406257 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[33] [Step Debug] -> + +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 20 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:39:35.152532 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:39:36.424359 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:39:38.303883 + +[39] Log opened at 2024-05-17 12:40:00.139670 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:40:05.368258 + +[24] Log opened at 2024-05-17 12:41:49.338051 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[38] Log opened at 2024-05-17 12:42:03.506885 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[44] Log opened at 2024-05-17 12:42:03.506860 +[33] Log opened at 2024-05-17 12:42:03.506955 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[33] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[33] [Step Debug] -> + +[38] [Step Debug] <- run -i 33 +[33] [Step Debug] <- run -i 33 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 33 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:42:05.110407 + +[24] Log opened at 2024-05-17 12:42:05.343093 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[39] Log opened at 2024-05-17 12:42:05.354750 +[40] Log opened at 2024-05-17 12:42:05.355326 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] -> + +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] -> + +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[24] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[40] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[40] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[39] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[40] [Step Debug] <- run -i 17 +[39] [Step Debug] <- run -i 16 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:42:06.318496 + +[24] Log opened at 2024-05-17 12:42:06.330765 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:42:06.874605 + +[44] Log opened at 2024-05-17 12:42:06.890531 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:42:08.235935 + +[38] Log opened at 2024-05-17 12:42:08.248319 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:42:09.391694 + +[33] Log opened at 2024-05-17 12:42:09.404297 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:42:10.291845 + +[40] Log opened at 2024-05-17 12:42:10.307442 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 17 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:42:11.655704 + +[39] Log opened at 2024-05-17 12:42:11.673208 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:42:12.011791 + +[24] Log opened at 2024-05-17 12:42:12.025834 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:42:12.415723 + +[44] Log opened at 2024-05-17 12:42:12.435625 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:42:13.044583 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:42:13.424945 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:42:13.785115 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:42:14.087995 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:42:14.337674 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:42:14.916417 + +[39] Log opened at 2024-05-17 12:42:15.086364 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] Log opened at 2024-05-17 12:42:15.294994 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] -> + +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] -> + +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] <- run -i 17 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 3 +[40] Log opened at 2024-05-17 12:42:15.330680 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:42:16.662573 + +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:42:18.889904 + +[42] Log opened at 2024-05-17 12:44:31.422464 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[42] [Step Debug] <- run -i 17 +[26] Log opened at 2024-05-17 12:44:34.094777 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:44:35.116488 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:44:36.300963 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:44:38.740479 + +[38] Log opened at 2024-05-17 12:47:23.982132 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[46] Log opened at 2024-05-17 12:47:23.982932 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[47] Log opened at 2024-05-17 12:47:23.986689 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[46] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[46] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[46] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[46] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[46] [Step Debug] <- run -i 33 +[38] [Step Debug] <- run -i 33 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 33 +[33] Log opened at 2024-05-17 12:47:24.885745 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[33] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[33] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[33] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[33] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 17 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:47:27.047230 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:47:27.154799 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:47:28.176394 + +[39] Log opened at 2024-05-17 12:47:28.858714 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[24] Log opened at 2024-05-17 12:47:28.859734 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[44] Log opened at 2024-05-17 12:47:28.860301 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[44] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[44] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[24] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- run -i 33 +[44] [Step Debug] <- run -i 33 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 33 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[26] Log opened at 2024-05-17 12:47:31.743745 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-17 12:47:36.474964 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:47:40.626759 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:47:42.503267 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:47:44.448737 + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:47:53.144804 + +[26] Log opened at 2024-05-17 12:47:53.332995 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] Log opened at 2024-05-17 12:47:53.341700 +[26] [Step Debug] -> + +[42] Log opened at 2024-05-17 12:47:53.341580 +[47] Log opened at 2024-05-17 12:47:53.341953 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[40] Log opened at 2024-05-17 12:47:53.341844 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[38] Log opened at 2024-05-17 12:47:53.342497 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] -> + +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] -> + +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] -> + +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[46] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[46] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[46] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[40] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[47] [Step Debug] <- feature_set -i 9 -n max_children -v 100 +[46] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 9 -n max_children -v 100 +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- feature_set -i 10 -n max_data -v 8192 +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 10 -n max_data -v 8192 +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[46] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[42] [Step Debug] <- feature_set -i 9 -n max_children -v 100 +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[46] [Step Debug] <- feature_set -i 13 -n max_children -v 100 +[38] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 10 -n max_data -v 8192 +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[47] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[46] [Step Debug] <- feature_set -i 14 -n max_data -v 8192 +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[47] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[42] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[46] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[38] [Step Debug] -> + +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[47] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 15 -n notify_ok -v 1 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 9 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 10 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 17 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 18 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[46] [Step Debug] <- run -i 17 +[47] [Step Debug] <- run -i 17 +[38] [Step Debug] <- run -i 17 +[42] [Step Debug] <- run -i 17 +[40] [Step Debug] <- run -i 19 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:47:54.213465 + +[26] Log opened at 2024-05-17 12:47:54.227962 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 17 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:47:55.748419 + +[46] Log opened at 2024-05-17 12:47:55.771377 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:47:56.763420 + +[38] Log opened at 2024-05-17 12:47:56.782545 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:47:57.260551 + +[47] Log opened at 2024-05-17 12:47:57.284997 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:47:58.324414 + +[40] Log opened at 2024-05-17 12:47:58.346383 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 17 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:47:59.317249 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:47:59.668592 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:47:59.966780 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:48:00.465263 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:48:00.878603 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:48:01.299336 + +[38] Log opened at 2024-05-17 12:48:01.404261 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[40] Log opened at 2024-05-17 12:48:01.512341 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[46] Log opened at 2024-05-17 12:48:01.527266 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[40] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[40] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[46] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[46] [Step Debug] -> + +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[46] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 17 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 23 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:48:03.117912 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:48:04.662806 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:48:05.711521 + +[24] Log opened at 2024-05-17 12:48:18.560468 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:48:22.545740 + +[44] Log opened at 2024-05-17 12:48:39.712267 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[39] Log opened at 2024-05-17 12:48:39.714789 +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] Log opened at 2024-05-17 12:48:39.717465 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] -> + +[39] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[44] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[44] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[48] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[39] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[44] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[48] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[48] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[39] [Step Debug] -> + +[48] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[48] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Error" +[44] [Step Debug] -> + +[48] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[48] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[48] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 16 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[44] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 25 +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 25 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 25 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:48:41.824505 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:48:42.318933 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 12:48:45.793668 + +[42] Log opened at 2024-05-17 12:48:53.717229 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 17 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:48:56.719827 + +[47] Log opened at 2024-05-17 12:48:58.509652 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[26] Log opened at 2024-05-17 12:48:58.510730 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[42] Log opened at 2024-05-17 12:48:58.513021 +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[47] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[47] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 24 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[42] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 25 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[47] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 27 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[26] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[42] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[26] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 30 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 31 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 32 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 33 +[47] [Step Debug] <- run -i 33 +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 33 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:49:00.577075 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:49:01.654920 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:49:02.822384 + +[38] Log opened at 2024-05-17 12:49:16.972919 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1079 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 15 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 16 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 17 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 18 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 19 -d 380315 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 20 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 21 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 22 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 24 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 26 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 27 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 28 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 29 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 30 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 31 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 32 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_value -i 33 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 34 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 36 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 37 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 38 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 40 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 41 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 42 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 43 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 44 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 45 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 46 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 47 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 48 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_value -i 49 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 50 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 51 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 52 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 53 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 54 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 55 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 56 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 58 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 59 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 60 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 61 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 62 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 63 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 64 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_value -i 65 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 66 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 68 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 69 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 70 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 72 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 73 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 74 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 75 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 76 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 77 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 78 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 79 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 80 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_value -i 81 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 82 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 83 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 84 -d 380313 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 85 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 86 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 87 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 88 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 89 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 90 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 91 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 92 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 93 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 94 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 95 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 96 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 97 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 98 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 99 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 100 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 101 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 102 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 103 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 104 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 105 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 106 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 107 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 108 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 109 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 110 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 111 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 112 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:50:49.752589 + +[38] Log opened at 2024-05-17 12:50:50.520280 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 875 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 15 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 16 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 17 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 19 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 21 -n "$DEVSENSE_EVAL_CACHE['e9d7aec83ecf162af6ca8e6f3872edd140c01f0aca45ae833142f7f3ca4d7e3c']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 22 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 23 -n "$DEVSENSE_EVAL_CACHE['e502873b2a31e6ec41add0d0e90636e2eb3730c075077f649f7e557407aec15a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 24 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 25 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 26 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 27 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_value -i 28 -d 0 -c 0 -n "$coste_envio[0]->pais" -m 7 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 29 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 31 -d 380324 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 32 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 33 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 34 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 36 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 38 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 39 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 40 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 41 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 42 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 43 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 44 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 45 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 46 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 47 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 48 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 49 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 51 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 52 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 53 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 54 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 55 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 56 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 58 -n "$direccion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 59 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1080 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 60 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:51:29.080498 + +[38] Log opened at 2024-05-17 12:51:30.378578 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1080 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 15 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 16 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 17 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 19 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 21 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 22 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 23 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 24 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 25 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 26 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 28 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 29 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 30 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 32 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 34 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 35 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 36 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 37 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 38 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 39 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 41 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 42 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 43 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 45 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 47 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 48 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 49 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 50 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 51 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 52 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 54 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 55 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 56 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 58 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 60 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 61 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 62 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 63 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 64 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 65 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 66 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- step_over -i 67 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 68 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 69 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 71 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 73 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 74 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 75 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 76 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 77 -n "$peso_libro" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 78 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 79 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 80 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 81 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 82 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 83 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 84 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 85 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 86 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 87 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 88 -n "$coste_envio[0]" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 89 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 90 -n "$DEVSENSE_EVAL_CACHE['a1d6824b638d7dfc448f0970f17df42aa5e3e5efe28ef4f800c55920d731db9a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 91 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 92 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 93 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 94 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 95 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 96 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 97 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 98 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 99 -n "$peso_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 101 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 102 -n "$DEVSENSE_EVAL_CACHE['58e80f7dd1b3dbeab99a03b953142441727e928aa4541a332254fae365d57154']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 103 -n "$DEVSENSE_EVAL_CACHE['a1d6824b638d7dfc448f0970f17df42aa5e3e5efe28ef4f800c55920d731db9a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 104 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 105 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 106 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 107 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 108 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 110 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 111 -n "$unidades_calculo" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 112 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 113 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 115 -n "$DEVSENSE_EVAL_CACHE['1a05dc2e8fd860c42794b2863dc8fa233440870d99af5292728eaf6c85df3844']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 116 -n "$DEVSENSE_EVAL_CACHE['58e80f7dd1b3dbeab99a03b953142441727e928aa4541a332254fae365d57154']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 117 -n "$DEVSENSE_EVAL_CACHE['a1d6824b638d7dfc448f0970f17df42aa5e3e5efe28ef4f800c55920d731db9a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 118 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 119 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 120 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 121 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 122 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 123 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 124 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 125 -n "$peso_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 127 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 128 -n "$DEVSENSE_EVAL_CACHE['1a05dc2e8fd860c42794b2863dc8fa233440870d99af5292728eaf6c85df3844']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 129 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 130 -n "$DEVSENSE_EVAL_CACHE['58e80f7dd1b3dbeab99a03b953142441727e928aa4541a332254fae365d57154']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 131 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 132 -n "$DEVSENSE_EVAL_CACHE['a1d6824b638d7dfc448f0970f17df42aa5e3e5efe28ef4f800c55920d731db9a']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 133 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 134 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 135 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 136 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 137 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 138 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 139 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 140 -n "$peso_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 143 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 144 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 145 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 146 -d 380336 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 147 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1083 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 148 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 149 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 150 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 151 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 152 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 153 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 154 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 155 -n "$peso_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 156 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 157 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 158 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 159 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 160 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 161 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:53:45.803840 + +[38] Log opened at 2024-05-17 12:53:48.377304 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1009 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1083 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 14 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 15 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 16 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 17 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 19 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 21 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 22 -n "$peso_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['1a05dc2e8fd860c42794b2863dc8fa233440870d99af5292728eaf6c85df3844']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 27 -n "$DEVSENSE_EVAL_CACHE['58e80f7dd1b3dbeab99a03b953142441727e928aa4541a332254fae365d57154']" -c 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 28 -d 380347 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 29 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 31 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 32 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 33 -n "$coste_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 34 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 35 -n "$i" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 37 -n "$proporcion" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- property_get -i 38 -n "$peso_envio" -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 40 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[38] [Step Debug] -> + +[38] [Step Debug] <- eval -i 41 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 42 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 44 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 45 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 46 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 48 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 49 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 50 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 51 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 52 +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 53 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 54 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 56 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:54:14.184687 + +[46] Log opened at 2024-05-17 12:57:12.338813 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 417 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoLineaModel.php -n 468 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 13 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 14 +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- stack_get -i 15 +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 16 -n "$coste_envio" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 17 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 18 -n "$i" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 20 -n "$proporcion" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 21 -n "$peso_envio" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[46] [Step Debug] -> + +[46] [Step Debug] <- context_names -i 25 -d 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_remove -i 27 -d 460050 +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 28 +[46] [Step Debug] -> + +[46] [Step Debug] <- stack_get -i 29 +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 30 -n "$coste_envio" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 32 -n "$i" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 34 -n "$proporcion" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- property_get -i 35 -n "$peso_envio" -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[46] [Step Debug] -> + +[46] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[46] [Step Debug] -> + +[46] [Step Debug] <- context_names -i 39 -d 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_remove -i 41 -d 460051 +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 42 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:57:31.347724 + +[40] Log opened at 2024-05-17 12:57:38.105686 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:57:46.157181 + +[40] Log opened at 2024-05-17 12:57:46.286465 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:57:47.135047 + +[24] Log opened at 2024-05-17 12:57:47.333376 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[39] Log opened at 2024-05-17 12:57:47.525432 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:57:49.458934 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:57:53.857186 + +[39] Log opened at 2024-05-17 12:57:55.681531 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:57:59.907612 + +[39] Log opened at 2024-05-17 12:58:04.296849 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:58:18.440152 + +[39] Log opened at 2024-05-17 12:58:18.570214 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[47] Log opened at 2024-05-17 12:58:18.582799 +[48] Log opened at 2024-05-17 12:58:18.582785 +[42] Log opened at 2024-05-17 12:58:18.582991 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[26] Log opened at 2024-05-17 12:58:18.583747 +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] -> + +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-05-17 12:58:18.593123 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] -> + +[26] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[42] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[39] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[42] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[26] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[48] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- feature_set -i 8 -n max_children -v 100 +[47] [Step Debug] -> + +[48] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[47] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[48] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[48] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 12 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 12 +[42] [Step Debug] <- run -i 12 +[48] [Step Debug] <- run -i 12 +[47] [Step Debug] <- run -i 13 +[38] [Step Debug] <- run -i 12 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:58:19.732363 + +[39] Log opened at 2024-05-17 12:58:19.749138 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:58:21.821108 + +[42] Log opened at 2024-05-17 12:58:21.833686 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:58:22.877373 + +[47] Log opened at 2024-05-17 12:58:22.896946 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 12:58:24.324550 + +[48] Log opened at 2024-05-17 12:58:24.338269 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:58:25.285113 + +[38] Log opened at 2024-05-17 12:58:25.298880 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:58:26.361541 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:58:26.767626 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:58:27.033998 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:58:27.296788 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 12:58:28.274857 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:58:29.420793 + +[39] Log opened at 2024-05-17 12:58:29.513529 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[39] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[39] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 12 +[47] Log opened at 2024-05-17 12:58:29.590258 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] Log opened at 2024-05-17 12:58:29.616125 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[47] [Step Debug] <- run -i 12 +[38] [Step Debug] <- run -i 5 +[42] Log opened at 2024-05-17 12:58:29.700356 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-17 12:58:31.090289 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 12:58:32.211884 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 12:58:33.918146 + +[44] Log opened at 2024-05-17 12:59:07.293911 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[46] Log opened at 2024-05-17 12:59:07.294528 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[46] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[44] [Step Debug] <- run -i 15 +[46] [Step Debug] <- run -i 15 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:09.242196 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:59:09.914799 + +[46] Log opened at 2024-05-17 12:59:11.209841 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[42] Log opened at 2024-05-17 12:59:11.209971 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 15 +[42] [Step Debug] <- run -i 15 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 12:59:11.947312 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 12:59:13.621788 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:15.050406 + +[42] Log opened at 2024-05-17 12:59:19.611588 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] Log opened at 2024-05-17 12:59:19.621278 +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[42] [Step Debug] -> + +[40] Log opened at 2024-05-17 12:59:19.621704 +[49] Log opened at 2024-05-17 12:59:19.621682 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] -> + +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] -> + +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[48] Log opened at 2024-05-17 12:59:19.632561 +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[24] [Step Debug] -> + +[26] Log opened at 2024-05-17 12:59:19.633290 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] -> + +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] -> + +[40] [Step Debug] -> + +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] -> + +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[24] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[49] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[48] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[26] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[42] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[48] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[42] [Step Debug] -> + +[24] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[40] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[24] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[49] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[24] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[24] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[24] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[48] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[40] [Step Debug] <- run -i 12 +[24] [Step Debug] <- run -i 12 +[48] [Step Debug] <- run -i 15 +[49] [Step Debug] <- run -i 12 +[26] [Step Debug] <- run -i 15 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:21.703419 + +[42] Log opened at 2024-05-17 12:59:21.807833 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:59:22.417358 + +[26] Log opened at 2024-05-17 12:59:22.433742 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 12:59:23.134711 + +[48] Log opened at 2024-05-17 12:59:23.153774 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:59:23.801795 + +[40] Log opened at 2024-05-17 12:59:23.819060 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:59:25.100357 + +[24] Log opened at 2024-05-17 12:59:25.118343 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 12:59:26.267965 + +[49] Log opened at 2024-05-17 12:59:26.282805 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:26.880580 + +[42] Log opened at 2024-05-17 12:59:26.892553 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:59:27.326591 + +[26] Log opened at 2024-05-17 12:59:27.340603 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 12:59:27.967986 + +[48] Log opened at 2024-05-17 12:59:27.983826 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:59:28.528741 + +[40] Log opened at 2024-05-17 12:59:28.546301 +[40] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.40' +[40] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[40] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[40] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[40] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[40] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[40] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[40] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[40] [Step Debug] -> + +[40] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[40] [Step Debug] -> + +[40] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:59:29.133795 + +[24] Log opened at 2024-05-17 12:59:29.147661 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 12:59:29.706375 + +[49] Log opened at 2024-05-17 12:59:29.734662 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:30.350042 + +[42] Log opened at 2024-05-17 12:59:30.632562 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 12:59:31.148832 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 12:59:31.738146 + +[40] [Step Debug] -> + +[40] Log closed at 2024-05-17 12:59:32.245566 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 12:59:32.749397 + +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 12:59:34.286969 + +[49] Log opened at 2024-05-17 12:59:34.317529 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:34.859961 + +[42] Log opened at 2024-05-17 12:59:34.885983 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 12:59:36.636743 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:37.492842 + +[42] Log opened at 2024-05-17 12:59:40.852702 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 12:59:45.398038 + +[47] Log opened at 2024-05-17 13:00:51.150343 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 12 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:01:08.384372 + +[47] Log opened at 2024-05-17 13:01:08.512478 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] Log opened at 2024-05-17 13:01:08.519698 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[44] Log opened at 2024-05-17 13:01:08.519462 +[46] Log opened at 2024-05-17 13:01:08.519904 +[26] Log opened at 2024-05-17 13:01:08.519754 +[48] Log opened at 2024-05-17 13:01:08.520282 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] -> + +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[48] [Step Debug] -> + +[26] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[44] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[38] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[46] [Step Debug] -> + +[26] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[38] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[44] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[38] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[44] [Step Debug] -> + +[48] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[44] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] -> + +[26] [Step Debug] -> + +[44] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 15 +[38] [Step Debug] <- run -i 13 +[46] [Step Debug] <- run -i 12 +[48] [Step Debug] <- run -i 14 +[44] [Step Debug] <- run -i 13 +[26] [Step Debug] <- run -i 13 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:01:09.646191 + +[47] Log opened at 2024-05-17 13:01:09.666854 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 12 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:01:11.827563 + +[46] Log opened at 2024-05-17 13:01:11.840945 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:01:13.181773 + +[38] Log opened at 2024-05-17 13:01:13.196663 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:01:14.103719 + +[26] Log opened at 2024-05-17 13:01:14.119122 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 12 +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 13:01:15.131120 + +[44] Log opened at 2024-05-17 13:01:15.147696 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[44] [Step Debug] -> + +[44] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:01:16.092653 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:01:16.433947 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:01:16.820720 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:01:17.112167 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:01:17.910174 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 13:01:19.000884 + +[38] Log opened at 2024-05-17 13:01:19.080439 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[44] Log opened at 2024-05-17 13:01:19.153676 +[44] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.44' +[44] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[44] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[44] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[44] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[46] Log opened at 2024-05-17 13:01:19.175414 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[44] [Step Debug] -> + +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[44] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[44] [Step Debug] -> + +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[44] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[44] [Step Debug] -> + +[46] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[44] [Step Debug] -> + +[44] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[44] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[44] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[44] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[44] [Step Debug] <- run -i 12 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[26] Log opened at 2024-05-17 13:01:19.267490 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 5 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:01:20.964585 + +[44] [Step Debug] -> + +[44] Log closed at 2024-05-17 13:01:21.654136 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:01:22.904444 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:01:23.698030 + +[49] Log opened at 2024-05-17 13:03:48.004723 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:03:52.131045 + +[42] Log opened at 2024-05-17 13:04:02.606052 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 999 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:04:11.404171 + +[50] Log opened at 2024-05-17 13:19:51.274479 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:19:53.267941 + +[50] Log opened at 2024-05-17 13:19:53.298008 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:19:55.426984 + +[50] Log opened at 2024-05-17 13:19:55.519324 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:19:56.162664 + +[47] Log opened at 2024-05-17 13:19:56.573678 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 12 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:19:58.256273 + +[38] Log opened at 2024-05-17 13:20:44.291831 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:20:46.306718 + +[38] Log opened at 2024-05-17 13:20:46.329203 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:20:48.547254 + +[38] Log opened at 2024-05-17 13:20:48.688495 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:20:49.346242 + +[46] Log opened at 2024-05-17 13:20:49.586464 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:20:51.090043 + +[46] Log opened at 2024-05-17 13:20:51.752273 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:20:55.080429 + +[46] Log opened at 2024-05-17 13:20:55.105625 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:21:00.114087 + +[46] Log opened at 2024-05-17 13:21:00.249912 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] Log opened at 2024-05-17 13:21:00.256319 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[47] Log opened at 2024-05-17 13:21:00.258029 +[50] Log opened at 2024-05-17 13:21:00.258345 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[48] Log opened at 2024-05-17 13:21:00.259516 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[49] Log opened at 2024-05-17 13:21:00.257877 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[42] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] -> + +[46] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[46] [Step Debug] -> + +[50] [Step Debug] -> + +[42] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[46] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[46] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[50] [Step Debug] -> + +[42] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[50] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[48] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[47] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[46] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[42] [Step Debug] -> + +[48] [Step Debug] -> + +[46] [Step Debug] <- run -i 18 +[48] [Step Debug] <- run -i 20 +[50] [Step Debug] <- run -i 16 +[42] [Step Debug] <- run -i 19 +[47] [Step Debug] <- run -i 17 +[49] [Step Debug] <- run -i 19 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:21:00.950133 + +[46] Log opened at 2024-05-17 13:21:00.961889 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:21:02.145666 + +[50] Log opened at 2024-05-17 13:21:02.157583 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:21:02.711774 + +[47] Log opened at 2024-05-17 13:21:02.720916 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:21:03.602104 + +[49] Log opened at 2024-05-17 13:21:03.611842 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:21:04.163547 + +[42] Log opened at 2024-05-17 13:21:04.173691 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:21:04.750526 + +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:21:04.940559 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:21:05.152109 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:21:05.340048 + +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:21:05.544258 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:21:05.725893 + +[46] Log opened at 2024-05-17 13:21:05.772417 +[46] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.46' +[46] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[46] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[46] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[46] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[46] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[46] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[46] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[46] [Step Debug] -> + +[46] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[46] [Step Debug] -> + +[46] [Step Debug] <- run -i 12 +[47] Log opened at 2024-05-17 13:21:05.888916 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] Log opened at 2024-05-17 13:21:05.903579 +[47] [Step Debug] -> + +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[47] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 13 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 12 +[46] [Step Debug] -> + +[46] Log closed at 2024-05-17 13:21:06.861851 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:21:07.485109 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:21:07.915182 + +[24] Log opened at 2024-05-17 13:21:24.843797 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:21:27.837360 + +[24] Log opened at 2024-05-17 13:21:30.426155 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:21:34.783287 + +[24] Log opened at 2024-05-17 13:21:34.931840 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] Log opened at 2024-05-17 13:21:34.935564 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[48] Log opened at 2024-05-17 13:21:34.937164 +[38] Log opened at 2024-05-17 13:21:34.937189 +[50] Log opened at 2024-05-17 13:21:34.937271 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[49] Log opened at 2024-05-17 13:21:34.937972 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] -> + +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[51] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[24] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[49] [Step Debug] -> + +[38] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[38] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[51] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] -> + +[24] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] -> + +[51] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[24] [Step Debug] -> + +[49] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[24] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[50] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[51] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[38] [Step Debug] <- run -i 12 +[49] [Step Debug] <- run -i 12 +[50] [Step Debug] <- run -i 12 +[51] [Step Debug] <- run -i 20 +[48] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:21:35.550203 + +[24] Log opened at 2024-05-17 13:21:35.562342 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:21:36.424727 + +[50] Log opened at 2024-05-17 13:21:36.434866 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 12 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:21:36.642386 + +[49] Log opened at 2024-05-17 13:21:36.653241 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:21:37.206865 + +[38] Log opened at 2024-05-17 13:21:37.217752 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:21:37.437586 + +[48] Log opened at 2024-05-17 13:21:37.449774 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:21:37.688292 + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:21:38.292183 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:21:38.506415 + +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:21:38.688873 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:21:38.887607 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:21:39.066342 + +[24] Log opened at 2024-05-17 13:21:39.119020 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[49] Log opened at 2024-05-17 13:21:39.277631 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[48] Log opened at 2024-05-17 13:21:39.277984 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 15 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 15 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:21:40.278163 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:21:40.841110 + +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:21:41.276693 + +[24] Log opened at 2024-05-17 13:21:43.318431 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 12 +[48] Log opened at 2024-05-17 13:21:43.413826 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] Log opened at 2024-05-17 13:21:43.415759 +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1000 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 342 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Models/Presupuestos/PresupuestoModel.php -n 367 +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 15 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 15 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:21:44.672644 + +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:21:44.982713 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:21:46.024951 + +[42] Log opened at 2024-05-17 13:23:26.417579 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1316 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 10 +[42] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 11 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 12 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 13 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 14 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 16 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 17 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 21 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 23 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 24 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 25 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 27 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 28 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 29 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 30 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 34 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 36 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 37 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 38 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 40 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 41 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 42 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 43 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 47 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 49 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 50 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 51 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 53 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 54 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 55 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 56 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 60 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 62 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 63 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 64 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 66 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 68 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 69 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 73 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 75 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 76 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 77 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 79 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 81 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 82 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 83 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 84 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 86 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 87 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 88 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 89 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 90 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 91 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 92 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 94 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 95 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 96 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 97 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 99 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 100 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- step_over -i 101 +[42] [Step Debug] -> + +[42] [Step Debug] <- stack_get -i 102 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 103 -n "$coste_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 104 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 105 -n "$i" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 106 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 107 -n "$proporcion" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- property_get -i 108 -n "$peso_envio" -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 110 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[42] [Step Debug] -> + +[42] [Step Debug] <- eval -i 111 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[42] [Step Debug] -> + +[42] [Step Debug] <- context_names -i 112 -d 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- context_get -i 113 -d 0 -c 0 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 114 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[42] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_remove -i 115 -d 420243 +[42] [Step Debug] -> + +[42] [Step Debug] <- run -i 116 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:24:10.150975 + +[42] Log opened at 2024-05-17 13:24:10.351718 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[50] Log opened at 2024-05-17 13:24:10.362711 +[47] Log opened at 2024-05-17 13:24:10.362695 +[26] Log opened at 2024-05-17 13:24:10.362633 +[38] Log opened at 2024-05-17 13:24:10.362704 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] Log opened at 2024-05-17 13:24:10.363760 +[42] [Step Debug] -> + +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[52] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[42] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[52] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[26] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[52] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[47] [Step Debug] <- run -i 5 +[50] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[52] [Step Debug] <- run -i 5 +[38] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 10 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:24:11.167735 + +[42] Log opened at 2024-05-17 13:24:11.179203 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[42] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[42] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[42] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:24:12.566103 + +[52] Log opened at 2024-05-17 13:24:12.574609 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:24:13.183665 + +[38] Log opened at 2024-05-17 13:24:13.191748 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[51] Log opened at 2024-05-17 13:24:13.215334 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[48] Log opened at 2024-05-17 13:24:13.287229 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] Log opened at 2024-05-17 13:24:13.291866 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] -> + +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[49] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[48] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 9 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:24:14.242547 + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:24:14.832876 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:24:15.472704 + +[24] Log opened at 2024-05-17 13:24:25.012213 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[42] [Step Debug] <- run -i 10 +[38] [Step Debug] <- run -i 10 +[52] [Step Debug] <- run -i 10 +[48] [Step Debug] <- run -i 10 +[51] [Step Debug] <- run -i 10 +[49] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:24:26.456380 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:24:26.655725 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-17 13:24:26.861470 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:24:27.032505 + +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 11 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 12 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 13 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 14 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 16 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 17 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 19 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 21 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 23 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 24 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 25 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 26 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 27 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 28 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 29 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 30 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 33 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 34 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 36 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 37 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 38 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 40 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 41 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 42 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 43 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 47 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 49 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 50 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 51 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 52 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 53 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 54 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 55 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 56 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 60 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 62 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 63 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 64 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 66 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 68 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 69 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 72 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 73 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 75 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 76 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 77 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 79 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 81 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 82 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 83 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 84 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 86 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 87 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 88 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 89 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 90 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 91 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTlkN2FlYzgzZWNmMTYyYWY2Y2E4ZTZmMzg3MmVkZDE0MGMwMWYwYWNhNDVhZTgzMzE0MmY3ZjNjYTRkN2UzYyddPSRyZXN1bHRhZG9fcHJlc3VwdWVzdG9bJ3RvdGFsZXMnXVskaV1bJ2Nvc3RlX2VudmlvJ10= +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 92 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 94 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 95 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 96 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 97 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 98 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 99 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 100 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 101 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 102 -n "$i" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 103 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 104 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 105 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 106 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 107 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 108 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 109 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 110 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZTUwMjg3M2IyYTMxZTZlYzQxYWRkMGQwZTkwNjM2ZTJlYjM3MzBjMDc1MDc3ZjY0OWY3ZTU1NzQwN2FlYzE1YSddPSR0aXJhZGFbJGld +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 111 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 112 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 113 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 115 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 116 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 117 -n "$proporcion" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 118 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 119 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 120 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 121 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 122 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 123 -n "$peso_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 124 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 125 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 127 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMWEwNWRjMmU4ZmQ4NjBjNDI3OTRiMjg2M2RjOGZhMjMzNDQwODcwZDk5YWY1MjkyNzI4ZWFmNmM4NWRmMzg0NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX2FkaWNpb25hbA== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 129 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 130 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 131 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 132 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNThlODBmN2RkMWIzZGJlYWI5OWEwM2I5NTMxNDI0NDE3MjdlOTI4YWE0NTQxYTMzMjI1NGZhZTM2NWQ1NzE1NCddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lvX21pbg== +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 133 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 134 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnYTFkNjgyNGI2MzhkN2RmYzQ0OGYwOTcwZjE3ZGY0MmFhNWUzZTVlZmUyOGVmNGY4MDBjNTU5MjBkNzMxZGI5YSddPSR0YXJpZmFzX2VudmlvWyRpXS0+cHJlY2lv +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 136 -n "$coste_envio" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 137 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 138 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 139 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 140 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 141 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 143 -n "$servicio->precio_unidad" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 144 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 145 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- step_over -i 146 +[48] [Step Debug] -> + +[48] [Step Debug] <- stack_get -i 147 +[48] [Step Debug] -> + +[48] [Step Debug] <- eval -i 148 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 149 -n "$servicio->precio_unidad" -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- property_get -i 150 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_names -i 151 -d 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- context_get -i 152 -d 0 -c 0 +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 153 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:26:58.484990 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 11 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 13 -n "$servicio->precio_unidad" -d 0 -c 0 +[24] [Step Debug] -> + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:26:59.256376 + +[24] [Step Debug] <- context_names -i 14 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 16 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:27:07.433738 + +[52] Log opened at 2024-05-17 13:27:07.590782 +[26] Log opened at 2024-05-17 13:27:07.590796 +[24] Log opened at 2024-05-17 13:27:07.590840 +[47] Log opened at 2024-05-17 13:27:07.590884 +[50] Log opened at 2024-05-17 13:27:07.591009 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[49] Log opened at 2024-05-17 13:27:07.591026 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[52] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[50] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[52] [Step Debug] -> + +[24] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[52] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[47] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[52] [Step Debug] -> + +[50] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[47] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] -> + +[49] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[49] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[52] [Step Debug] -> + +[49] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[49] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[26] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[24] [Step Debug] -> + +[50] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[50] [Step Debug] -> + +[24] [Step Debug] -> + +[49] [Step Debug] -> + +[26] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[24] [Step Debug] -> + +[47] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[49] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[49] [Step Debug] <- run -i 15 +[50] [Step Debug] <- run -i 15 +[52] [Step Debug] <- run -i 15 +[26] [Step Debug] <- run -i 15 +[24] [Step Debug] <- run -i 15 +[47] [Step Debug] <- run -i 15 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:27:09.582280 + +[24] Log opened at 2024-05-17 13:27:09.589730 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:27:10.187921 + +[49] Log opened at 2024-05-17 13:27:10.197600 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 10 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:27:10.793219 + +[47] Log opened at 2024-05-17 13:27:10.801976 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 10 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:27:11.390442 + +[50] Log opened at 2024-05-17 13:27:11.399598 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 10 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:27:11.983347 + +[52] Log opened at 2024-05-17 13:27:11.989606 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:27:12.566369 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:27:12.597745 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:27:12.878852 + +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:27:13.079963 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:27:13.286126 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:27:13.471271 + +[49] Log opened at 2024-05-17 13:27:13.534943 +[49] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.49' +[49] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[49] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[49] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[49] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[49] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[49] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[49] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[49] [Step Debug] -> + +[49] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[49] [Step Debug] -> + +[49] [Step Debug] <- run -i 10 +[50] Log opened at 2024-05-17 13:27:13.631650 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[47] Log opened at 2024-05-17 13:27:13.655107 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[26] Log opened at 2024-05-17 13:27:13.666667 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] -> + +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[50] [Step Debug] <- run -i 10 +[47] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[49] [Step Debug] -> + +[49] Log closed at 2024-05-17 13:27:14.979575 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:27:15.634142 + +[50] [Step Debug] -> + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:27:16.098068 + +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:27:16.682950 + +[38] Log opened at 2024-05-17 13:28:22.301876 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 10 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 11 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 12 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:28:40.808934 + +[38] Log opened at 2024-05-17 13:28:40.973817 +[51] Log opened at 2024-05-17 13:28:40.973892 +[24] Log opened at 2024-05-17 13:28:40.973933 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[48] Log opened at 2024-05-17 13:28:40.974115 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[53] Log opened at 2024-05-17 13:28:40.974785 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] Log opened at 2024-05-17 13:28:40.976992 +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[53] [Step Debug] -> + +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[24] [Step Debug] -> + +[53] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] -> + +[38] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[53] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[38] [Step Debug] -> + +[53] [Step Debug] -> + +[24] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[53] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[48] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[53] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] -> + +[53] [Step Debug] -> + +[24] [Step Debug] -> + +[51] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[38] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[24] [Step Debug] -> + +[51] [Step Debug] <- run -i 14 +[24] [Step Debug] <- run -i 14 +[48] [Step Debug] <- run -i 14 +[53] [Step Debug] <- run -i 14 +[38] [Step Debug] <- run -i 14 +[52] [Step Debug] <- run -i 14 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:28:42.567042 + +[24] Log opened at 2024-05-17 13:28:42.579723 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 10 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:28:43.046045 + +[38] Log opened at 2024-05-17 13:28:43.062534 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 10 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:28:43.248644 + +[52] Log opened at 2024-05-17 13:28:43.259583 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:28:43.530621 + +[48] Log opened at 2024-05-17 13:28:43.544256 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:28:43.789875 + +[51] Log opened at 2024-05-17 13:28:43.797485 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 10 +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:28:44.446832 + +[53] [Step Debug] -> + +[53] Log closed at 2024-05-17 13:28:44.483526 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:28:44.728631 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:28:44.956200 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:28:45.152898 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:28:45.333452 + +[48] Log opened at 2024-05-17 13:28:45.385853 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[24] Log opened at 2024-05-17 13:28:45.508231 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[52] Log opened at 2024-05-17 13:28:45.509373 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[24] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[24] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[24] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[24] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[24] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[24] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 11 +[24] [Step Debug] <- run -i 11 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:28:46.479878 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-17 13:28:46.989394 + +[52] [Step Debug] -> + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:28:47.442483 + +[26] Log opened at 2024-05-17 13:28:54.392769 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 10 +[26] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:28:55.905109 + +[47] Log opened at 2024-05-17 13:29:35.736949 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 10 +[47] [Step Debug] -> + +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 11 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 12 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 13 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 14 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 15 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 16 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 17 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 18 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 19 -n "$servicio->precio_unidad" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 20 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 22 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 23 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 25 -n "$servicio->precio_unidad" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 26 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 27 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 29 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 30 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 32 -n "$servicio->precio_unidad" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 33 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 34 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 36 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 37 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 38 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 39 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 40 -n "$servicio->precio_unidad" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 41 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 42 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 44 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 45 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 46 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 47 -n "$servicio->precio_unidad" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 48 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 49 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- step_over -i 51 +[47] [Step Debug] -> + +[47] [Step Debug] <- stack_get -i 52 +[47] [Step Debug] -> + +[47] [Step Debug] <- eval -i 53 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 54 -n "$servicio->precio_unidad" -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- property_get -i 55 -n "$DEVSENSE_EVAL_CACHE['dfee28b2d59f4c13e29678d7bb2d8f4fdc197b2911ff7692bfb6ab0c03809ed0']" -c 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_names -i 56 -d 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- context_get -i 57 -d 0 -c 0 +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 58 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:30:09.563494 + +[53] Log opened at 2024-05-17 13:30:09.736012 +[51] Log opened at 2024-05-17 13:30:09.736076 +[47] Log opened at 2024-05-17 13:30:09.736043 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[55] Log opened at 2024-05-17 13:30:09.736518 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] Log opened at 2024-05-17 13:30:09.738504 +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] Log opened at 2024-05-17 13:30:09.739056 +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[55] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[38] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[55] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[53] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[47] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1419 +[53] [Step Debug] -> + +[38] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[38] [Step Debug] -> + +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[47] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[38] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[53] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[38] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[48] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[51] [Step Debug] <- run -i 10 +[53] [Step Debug] <- run -i 10 +[48] [Step Debug] <- run -i 10 +[55] [Step Debug] <- run -i 10 +[47] [Step Debug] <- run -i 10 +[38] [Step Debug] <- run -i 10 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_remove -i 11 -d 550001 +[53] [Step Debug] -> + +[53] Log closed at 2024-05-17 13:30:11.268381 + +[53] Log opened at 2024-05-17 13:30:11.283338 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 9 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 11 -d 550001 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:30:11.491474 + +[38] Log opened at 2024-05-17 13:30:11.499819 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 9 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_remove -i 11 -d 550001 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:30:11.887257 + +[47] Log opened at 2024-05-17 13:30:11.897119 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 9 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_remove -i 11 -d 550001 +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:30:12.604860 + +[51] Log opened at 2024-05-17 13:30:12.616008 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 9 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_remove -i 11 -d 550001 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:30:13.201840 + +[48] Log opened at 2024-05-17 13:30:13.210061 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 9 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:30:13.792976 + +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_remove -i 11 -d 550001 +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:30:13.866053 + +[53] [Step Debug] -> + +[53] Log closed at 2024-05-17 13:30:14.131724 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:30:14.312280 + +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:30:14.498378 + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:30:14.690010 + +[38] Log opened at 2024-05-17 13:30:14.793908 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 9 +[51] Log opened at 2024-05-17 13:30:14.839509 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[53] Log opened at 2024-05-17 13:30:14.845366 +[53] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.53' +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[53] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[53] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[53] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[53] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] -> + +[53] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[53] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[53] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[53] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[51] [Step Debug] -> + +[53] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[53] [Step Debug] -> + +[51] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[53] [Step Debug] -> + +[53] [Step Debug] <- run -i 9 +[51] [Step Debug] <- run -i 9 +[48] Log opened at 2024-05-17 13:30:14.898490 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 9 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:30:16.076307 + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:30:16.626415 + +[53] [Step Debug] -> + +[53] Log closed at 2024-05-17 13:30:17.079036 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:30:17.573643 + +[52] Log opened at 2024-05-17 13:31:14.736650 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:31:17.098872 + +[50] Log opened at 2024-05-17 13:32:33.686691 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 9 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:32:38.844034 + +[50] Log opened at 2024-05-17 13:32:38.979762 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[26] Log opened at 2024-05-17 13:32:38.979758 +[38] Log opened at 2024-05-17 13:32:38.980156 +[47] Log opened at 2024-05-17 13:32:38.980347 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[56] Log opened at 2024-05-17 13:32:38.980667 +[55] Log opened at 2024-05-17 13:32:38.981060 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[38] [Step Debug] -> + +[56] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[47] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[38] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[38] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[26] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[56] [Step Debug] -> + +[38] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[26] [Step Debug] -> + +[50] [Step Debug] -> + +[56] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[55] [Step Debug] -> + +[26] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[56] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[38] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[50] [Step Debug] -> + +[47] [Step Debug] -> + +[56] [Step Debug] -> + +[38] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[26] [Step Debug] -> + +[50] [Step Debug] -> + +[56] [Step Debug] -> + +[47] [Step Debug] -> + +[38] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[50] [Step Debug] <- run -i 9 +[56] [Step Debug] <- run -i 9 +[55] [Step Debug] <- run -i 9 +[47] [Step Debug] <- run -i 9 +[26] [Step Debug] <- run -i 9 +[38] [Step Debug] <- run -i 9 +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:32:40.783137 + +[50] Log opened at 2024-05-17 13:32:40.792501 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 13:32:41.331101 + +[56] Log opened at 2024-05-17 13:32:41.342351 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:32:41.941714 + +[55] Log opened at 2024-05-17 13:32:41.949735 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 9 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:32:42.534339 + +[26] Log opened at 2024-05-17 13:32:42.543432 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 9 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:32:43.163028 + +[47] Log opened at 2024-05-17 13:32:43.169624 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 9 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:32:43.679718 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:32:43.891416 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:32:44.167771 + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 13:32:44.386990 + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:32:44.595690 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:32:44.790816 + +[56] Log opened at 2024-05-17 13:32:44.844248 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[26] Log opened at 2024-05-17 13:32:44.899122 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[47] Log opened at 2024-05-17 13:32:44.912060 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] -> + +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[26] [Step Debug] <- run -i 9 +[47] [Step Debug] <- run -i 1 +[55] Log opened at 2024-05-17 13:32:44.987771 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[38] Log opened at 2024-05-17 13:32:45.173176 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[50] Log opened at 2024-05-17 13:32:45.174398 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[38] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[38] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[38] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[38] [Step Debug] -> + +[50] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[38] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[50] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[38] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[55] [Step Debug] <- run -i 9 +[50] [Step Debug] <- run -i 9 +[38] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 13:32:46.060786 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:32:46.640670 + +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:32:47.080047 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:32:47.438530 + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:32:47.853047 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-17 13:32:48.238457 + +[56] Log opened at 2024-05-17 13:32:50.997904 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 13:32:54.169412 + +[51] Log opened at 2024-05-17 13:32:54.270230 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 9 +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:32:55.932182 + +[48] Log opened at 2024-05-17 13:33:09.023137 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 9 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:33:11.995182 + +[52] Log opened at 2024-05-17 13:33:13.662940 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:15.636740 + +[52] Log opened at 2024-05-17 13:33:15.723752 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:16.667828 + +[52] Log opened at 2024-05-17 13:33:16.797053 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:17.839892 + +[52] Log opened at 2024-05-17 13:33:21.431758 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:25.679935 + +[52] Log opened at 2024-05-17 13:33:25.806002 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] Log opened at 2024-05-17 13:33:25.810430 +[47] Log opened at 2024-05-17 13:33:25.810413 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[57] Log opened at 2024-05-17 13:33:25.811259 +[55] Log opened at 2024-05-17 13:33:25.811223 +[50] Log opened at 2024-05-17 13:33:25.811238 +[57] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.57' +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] -> + +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[57] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[57] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[57] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] -> + +[57] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[57] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[57] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[57] [Step Debug] -> + +[26] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[52] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[57] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[55] [Step Debug] -> + +[57] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[57] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[55] [Step Debug] -> + +[57] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[57] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[50] [Step Debug] -> + +[52] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[47] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[55] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[57] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[50] [Step Debug] -> + +[52] [Step Debug] -> + +[47] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[26] [Step Debug] -> + +[50] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[57] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[26] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[57] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[57] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[57] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[47] [Step Debug] <- run -i 9 +[50] [Step Debug] <- run -i 9 +[26] [Step Debug] <- run -i 9 +[55] [Step Debug] <- run -i 9 +[57] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:26.328730 + +[52] Log opened at 2024-05-17 13:33:26.341474 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:33:27.205041 + +[55] Log opened at 2024-05-17 13:33:27.216297 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 9 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:33:27.463634 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:33:28.207966 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:33:28.428094 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:28.626420 + +[57] [Step Debug] -> + +[57] Log closed at 2024-05-17 13:33:29.208030 + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:33:29.413854 + +[47] Log opened at 2024-05-17 13:33:29.452861 +[47] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.47' +[47] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[47] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[47] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[47] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[47] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[47] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[47] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[47] [Step Debug] -> + +[47] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[47] [Step Debug] -> + +[47] [Step Debug] <- run -i 9 +[47] [Step Debug] -> + +[47] Log closed at 2024-05-17 13:33:30.582515 + +[56] Log opened at 2024-05-17 13:33:40.983857 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 13:33:42.798010 + +[56] Log opened at 2024-05-17 13:33:42.958739 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 9 +[51] Log opened at 2024-05-17 13:33:43.032757 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 9 +[48] Log opened at 2024-05-17 13:33:43.145981 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 9 +[58] Log opened at 2024-05-17 13:33:43.228853 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 9 +[26] Log opened at 2024-05-17 13:33:43.443474 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 9 +[55] Log opened at 2024-05-17 13:33:43.560055 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 9 +[50] Log opened at 2024-05-17 13:33:43.609994 +[50] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.50' +[50] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[50] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[50] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[50] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[50] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[50] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[50] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[50] [Step Debug] -> + +[50] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[50] [Step Debug] -> + +[50] [Step Debug] <- run -i 9 +[52] Log opened at 2024-05-17 13:33:43.735274 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 13:33:45.203249 + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 13:33:45.967634 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:33:46.517800 + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:33:46.954973 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:33:47.427832 + +[50] [Step Debug] -> + +[50] Log closed at 2024-05-17 13:33:47.893390 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:48.308065 + +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 13:33:49.306034 + +[52] Log opened at 2024-05-17 13:33:49.384151 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:51.899097 + +[52] Log opened at 2024-05-17 13:33:52.036491 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 9 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 13:33:52.669265 + +[48] Log opened at 2024-05-17 13:33:53.300501 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 9 +[55] Log opened at 2024-05-17 13:33:53.420221 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 9 +[26] Log opened at 2024-05-17 13:33:53.504444 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[26] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[26] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[26] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[26] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[26] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[26] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[26] [Step Debug] <- run -i 9 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 13:33:54.334452 + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 13:33:54.500619 + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-17 13:33:55.052059 + +[58] Log opened at 2024-05-17 13:34:02.365143 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 9 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 13:34:03.744449 + +[58] Log opened at 2024-05-17 13:34:07.262674 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 9 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 13:34:08.575029 + +[58] Log opened at 2024-05-17 13:34:10.818504 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 9 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 13:34:12.829351 + +[58] Log opened at 2024-05-17 13:34:13.923364 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 9 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 13:34:15.471581 + +[58] Log opened at 2024-05-17 13:34:19.852633 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 9 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 13:34:21.516283 + +[59] Log opened at 2024-05-17 13:34:26.728502 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 9 +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 13:34:29.900383 + +[61] Log opened at 2024-05-17 13:34:36.547920 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 9 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 13:34:39.225271 + +[56] Log opened at 2024-05-17 13:38:45.196312 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 10 +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 11 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 12 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 13 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 14 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 15 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_into -i 16 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 17 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 18 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 19 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 20 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 21 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 22 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 23 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 24 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 25 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 26 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 27 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 28 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 29 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 30 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 31 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 32 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 33 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 34 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 35 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 36 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 37 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 38 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 39 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 40 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 41 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 42 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 43 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 44 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 45 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 46 -n "$papel_formato_personalizado" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 47 -n "$lomo_sobrecubierta" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 48 -n "$lomo_cubierta" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 49 -n "$solapas_ancho_sobrecubierta" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 50 -n "$solapas_ancho_cubierta" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 51 -n "$solapas_sobrecubierta" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 52 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 53 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 54 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 55 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 56 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 57 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 58 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 59 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 60 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 61 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 62 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 63 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 64 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 65 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 66 -n "$papel_impresion" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 67 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 68 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 69 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 70 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 71 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 72 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 73 -n "$maquina->maquina_id" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 74 -n "$maquina" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 75 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 76 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 77 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 78 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 79 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 80 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 81 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 82 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 83 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 84 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 85 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 86 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 87 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 88 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 89 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 90 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 91 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 92 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 93 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 94 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 95 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 96 +[56] [Step Debug] -> + +[56] [Step Debug] <- step_over -i 97 +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 98 +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 99 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:00:33.528952 + +[56] Log opened at 2024-05-17 14:00:33.698738 +[60] Log opened at 2024-05-17 14:00:33.699029 +[51] Log opened at 2024-05-17 14:00:33.699035 +[48] Log opened at 2024-05-17 14:00:33.699005 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[55] Log opened at 2024-05-17 14:00:33.698986 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[52] Log opened at 2024-05-17 14:00:33.700642 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[56] [Step Debug] -> + +[60] [Step Debug] -> + +[55] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[51] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[52] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[55] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[55] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[60] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[60] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[52] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[52] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[55] [Step Debug] -> + +[51] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[48] [Step Debug] -> + +[51] [Step Debug] -> + +[55] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[60] [Step Debug] -> + +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] -> + +[51] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[55] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[51] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[56] [Step Debug] -> + +[55] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[60] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[51] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] -> + +[48] [Step Debug] -> + +[55] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 15 +[55] [Step Debug] <- run -i 15 +[56] [Step Debug] <- run -i 13 +[51] [Step Debug] <- run -i 15 +[60] [Step Debug] <- run -i 13 +[48] [Step Debug] <- run -i 15 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:00:38.288765 + +[56] Log opened at 2024-05-17 14:00:38.298459 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 10 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:00:38.379738 + +[48] Log opened at 2024-05-17 14:00:38.389357 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 14:00:38.986336 + +[55] Log opened at 2024-05-17 14:00:39.000484 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 10 +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 14:00:39.733889 + +[51] Log opened at 2024-05-17 14:00:39.743336 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 10 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:00:40.339997 + +[52] Log opened at 2024-05-17 14:00:40.347353 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:00:40.886135 + +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:00:40.956065 + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:00:41.221693 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:00:41.525041 + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 14:00:41.805671 + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 14:00:42.047558 + +[48] Log opened at 2024-05-17 14:00:42.340389 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[51] Log opened at 2024-05-17 14:00:42.440451 +[51] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.51' +[51] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[51] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[51] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[51] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[51] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[51] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[51] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[51] [Step Debug] -> + +[51] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[51] [Step Debug] -> + +[51] [Step Debug] <- run -i 10 +[55] Log opened at 2024-05-17 14:00:42.464614 +[55] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.55' +[55] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[55] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[55] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[55] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[55] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[55] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[55] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[55] [Step Debug] -> + +[55] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[55] [Step Debug] -> + +[55] [Step Debug] <- run -i 10 +[60] Log opened at 2024-05-17 14:00:42.586469 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 10 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:00:43.887930 + +[51] [Step Debug] -> + +[51] [Step Debug] -> + +[51] Log closed at 2024-05-17 14:00:44.728711 + +[55] [Step Debug] -> + +[55] [Step Debug] -> + +[55] Log closed at 2024-05-17 14:00:45.194745 + +[60] [Step Debug] -> + +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:00:45.699388 + +[58] Log opened at 2024-05-17 14:05:32.402467 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[61] Log opened at 2024-05-17 14:05:32.402973 +[52] Log opened at 2024-05-17 14:05:32.403288 +[59] Log opened at 2024-05-17 14:05:32.402997 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[56] Log opened at 2024-05-17 14:05:32.404386 +[62] Log opened at 2024-05-17 14:05:32.404422 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[48] Log opened at 2024-05-17 14:05:32.405086 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[52] [Step Debug] -> + +[58] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[62] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[59] [Step Debug] -> + +[52] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[59] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[58] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[58] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[48] [Step Debug] -> + +[56] [Step Debug] -> + +[52] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[58] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[48] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[56] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[58] [Step Debug] -> + +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[48] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 11 +[58] [Step Debug] <- run -i 11 +[56] [Step Debug] <- run -i 11 +[59] [Step Debug] <- run -i 11 +[62] [Step Debug] <- run -i 11 +[61] [Step Debug] <- run -i 11 +[48] [Step Debug] <- run -i 11 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:05:34.802162 + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:05:35.530846 + +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:05:36.275580 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:05:36.979695 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:05:37.779521 + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:05:38.520975 + +[52] Log opened at 2024-05-17 14:05:38.537595 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[48] Log opened at 2024-05-17 14:05:38.770976 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 10 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:05:39.315192 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:05:39.938167 + +[48] [Step Debug] -> + +[52] Log opened at 2024-05-17 14:05:40.362124 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:05:40.946333 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:05:41.878860 + +[52] Log opened at 2024-05-17 14:05:46.693874 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1008 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[52] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- stack_get -i 11 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[52] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_remove -i 13 -d 520096 +[52] [Step Debug] -> + +[52] [Step Debug] <- eval -i 14 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZGZlZTI4YjJkNTlmNGMxM2UyOTY3OGQ3YmIyZDhmNGZkYzE5N2IyOTExZmY3NjkyYmZiNmFiMGMwMzgwOWVkMCddPXJvdW5kKCRudWV2YV90YXJpZmFbMF0tPnByZWNpb191bmlkYWQsIDIp +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 15 -n "$servicio->precio_unidad" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_names -i 16 -d 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_names -i 18 -d 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 19 -n "$linea['tipo']" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 20 -n "$servicio->precio_unidad" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_names -i 22 -d 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 23 -n "$linea['tipo_linea']" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 24 -n "$servicio->precio_unidad" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_names -i 26 -d 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 27 -n "$linea->tipo" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 28 -n "$servicio->precio_unidad" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- step_over -i 30 +[52] [Step Debug] -> + +[52] [Step Debug] <- stack_get -i 31 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 32 -n "$linea->tipo" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- property_get -i 33 -n "$servicio->precio_unidad" -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_names -i 34 -d 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_remove -i 36 -d 520101 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 37 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[52] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_remove -i 38 -d 520102 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 39 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[52] [Step Debug] -> + +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 40 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:06:44.354467 + +[52] Log opened at 2024-05-17 14:06:44.542150 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] Log opened at 2024-05-17 14:06:44.560217 +[52] [Step Debug] -> + +[56] Log opened at 2024-05-17 14:06:44.560280 +[65] Log opened at 2024-05-17 14:06:44.560591 +[63] Log opened at 2024-05-17 14:06:44.560844 +[64] Log opened at 2024-05-17 14:06:44.560566 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] -> + +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[56] [Step Debug] -> + +[65] [Step Debug] -> + +[63] [Step Debug] -> + +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[60] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[60] [Step Debug] -> + +[63] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[56] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[63] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[56] [Step Debug] -> + +[64] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[56] [Step Debug] <- run -i 5 +[60] [Step Debug] <- run -i 5 +[65] [Step Debug] <- run -i 5 +[63] [Step Debug] <- run -i 5 +[64] [Step Debug] <- run -i 5 +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:06:45.142588 + +[52] Log opened at 2024-05-17 14:06:45.156794 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:06:46.162838 + +[56] Log opened at 2024-05-17 14:06:46.173407 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[63] [Step Debug] -> + +[63] Log closed at 2024-05-17 14:06:46.817882 + +[63] Log opened at 2024-05-17 14:06:46.826329 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:06:47.853773 + +[60] Log opened at 2024-05-17 14:06:47.864526 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:06:48.503422 + +[65] Log opened at 2024-05-17 14:06:48.511450 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:06:49.127043 + +[58] Log opened at 2024-05-17 14:07:02.456463 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[60] [Step Debug] <- run -i 10 +[56] [Step Debug] <- run -i 10 +[65] [Step Debug] <- run -i 10 +[63] [Step Debug] <- run -i 10 +[58] [Step Debug] <- run -i 10 +[63] [Step Debug] -> + +[63] Log closed at 2024-05-17 14:07:03.780907 + +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:07:03.968258 + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:07:04.146060 + +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:07:05.141609 + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:07:05.341356 + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:07:05.568055 + +[52] Log opened at 2024-05-17 14:07:05.812083 +[52] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.52' +[52] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[52] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[52] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[52] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[52] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[52] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[52] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[52] [Step Debug] -> + +[52] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[52] [Step Debug] -> + +[52] [Step Debug] <- run -i 10 +[63] Log opened at 2024-05-17 14:07:05.933429 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[65] Log opened at 2024-05-17 14:07:05.955786 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 5 +[63] [Step Debug] <- run -i 10 +[56] Log opened at 2024-05-17 14:07:06.082974 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[52] [Step Debug] -> + +[52] Log closed at 2024-05-17 14:07:06.936954 + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:07:07.406319 + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] Log closed at 2024-05-17 14:07:07.851116 + +[62] Log opened at 2024-05-17 14:07:20.435285 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[56] [Step Debug] <- run -i 10 +[62] [Step Debug] <- run -i 10 +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:07:21.682987 + +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 11 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 12 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 13 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 14 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 16 -n "$array_lineas" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 17 -n "$array_lineas[0]" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 18 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:08:24.538076 + +[59] Log opened at 2024-05-17 14:08:24.754126 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[61] Log opened at 2024-05-17 14:08:24.754924 +[60] Log opened at 2024-05-17 14:08:24.755417 +[62] Log opened at 2024-05-17 14:08:24.755444 +[48] Log opened at 2024-05-17 14:08:24.754959 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[64] Log opened at 2024-05-17 14:08:24.756547 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[60] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] -> + +[62] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[62] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[48] [Step Debug] <- run -i 15 +[59] [Step Debug] <- run -i 15 +[64] [Step Debug] <- run -i 15 +[61] [Step Debug] <- run -i 15 +[60] [Step Debug] <- run -i 15 +[62] [Step Debug] <- run -i 15 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:08:26.438780 + +[60] Log opened at 2024-05-17 14:08:26.455733 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 10 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:08:26.689182 + +[64] Log opened at 2024-05-17 14:08:26.700269 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 10 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:08:27.151924 + +[62] Log opened at 2024-05-17 14:08:27.161367 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 10 +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:08:27.881432 + +[59] Log opened at 2024-05-17 14:08:27.890376 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 10 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:08:28.481079 + +[61] Log opened at 2024-05-17 14:08:28.487144 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 10 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:08:29.019007 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:08:29.061998 + +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:08:29.333356 + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:08:29.596749 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:08:29.816249 + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:08:30.041323 + +[64] Log opened at 2024-05-17 14:08:30.312999 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 10 +[59] Log opened at 2024-05-17 14:08:30.431723 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[60] Log opened at 2024-05-17 14:08:30.455338 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[59] [Step Debug] <- run -i 10 +[60] [Step Debug] <- run -i 5 +[61] Log opened at 2024-05-17 14:08:30.558212 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:08:31.405966 + +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:08:31.967093 + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:08:32.479110 + +[61] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[61] [Step Debug] -> + +[58] Log opened at 2024-05-17 14:08:51.033872 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[61] [Step Debug] <- run -i 11 +[58] [Step Debug] <- run -i 11 +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:08:52.657489 + +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 12 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 13 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 14 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 15 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 17 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 18 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 19 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 20 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 21 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 23 -n "$linea" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 24 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 25 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 26 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 27 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 28 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 30 -n "$linea" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 31 -n "$model->insertLPFromBackend" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 32 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 33 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 34 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 35 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 36 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 37 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 38 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 39 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 40 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 41 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 42 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 43 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 44 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_remove -i 45 -d 580035 +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 46 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:09:31.939953 + +[58] Log opened at 2024-05-17 14:09:34.225024 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 11 +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 12 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 13 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 14 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 15 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 17 -n "$this->guardarLineaPresupuesto" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_into -i 18 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 19 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 20 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 21 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 22 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 24 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 25 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 26 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 27 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 28 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 30 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 31 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 32 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 33 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 34 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- step_over -i 36 +[58] [Step Debug] -> + +[58] [Step Debug] <- stack_get -i 37 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 38 -n "$linea->tipo" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- property_get -i 39 -n "$servicio->precio_unidad" -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_names -i 40 -d 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 42 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:09:58.959820 + +[65] Log opened at 2024-05-17 14:10:12.773935 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 11 +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 12 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 13 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 14 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 15 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_into -i 17 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 18 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 19 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 20 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 21 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 23 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 24 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 25 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 26 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 27 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 29 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 30 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 31 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 32 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 33 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_into -i 35 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 36 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 37 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 38 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 39 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 41 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 42 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 43 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 44 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 45 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 47 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 48 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 49 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 50 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 51 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 53 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 54 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 55 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 56 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 57 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 58 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 59 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 60 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 61 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 62 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 63 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 64 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 65 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 66 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 67 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 68 -n "$servicio->precio_unidad" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 69 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 71 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:10:54.205759 + +[63] Log opened at 2024-05-17 14:11:05.229985 +[63] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.63' +[63] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[63] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[63] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[63] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[63] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[63] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[63] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[63] [Step Debug] -> + +[63] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 11 +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] -> + +[63] [Step Debug] <- stack_get -i 12 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 13 -n "$linea->tipo" -d 0 -c 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- property_get -i 14 -n "$servicio->precio_unidad" -d 0 -c 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- context_names -i 15 -d 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[63] [Step Debug] -> + +[63] [Step Debug] <- run -i 17 +[63] [Step Debug] -> + +[63] Log closed at 2024-05-17 14:11:12.911396 + +[62] Log opened at 2024-05-17 14:11:29.984288 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 11 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 12 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 13 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 14 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 15 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 17 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 18 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 19 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 20 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 21 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 23 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 24 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 25 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 26 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 27 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 29 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] -> + +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 30 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 31 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 32 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 33 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 34 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNmQwZjYyNjJmNzY2MzVlYjE1MDNhMzlmY2UwNWRlZTY1ZTEzMWZhMzA3ODcyNmUwMDRmNDVhNTgxMmE1MWYxZiddPVByZXN1cHVlc3RvU2VydmljZTo6Y2hlY2tNYXF1aW5h +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 37 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 38 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 39 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 40 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 41 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 43 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 44 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 45 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 46 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 47 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 49 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 50 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 51 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 52 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 53 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 54 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 55 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 56 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 57 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 58 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 59 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 61 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 62 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 63 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 64 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 65 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 66 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 67 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 68 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 69 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 70 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 71 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 72 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 73 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 74 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 75 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 76 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 77 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 78 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 79 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 80 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 81 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 82 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 83 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 85 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 86 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 87 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 88 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 89 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 90 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 91 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 92 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 93 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 94 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 95 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 96 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 97 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 98 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 99 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 100 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 101 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 102 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 103 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 104 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 105 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 106 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 107 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 108 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_into -i 109 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 110 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 111 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 112 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 113 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 114 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 115 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 116 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 117 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 118 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 119 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 120 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 121 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 122 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 123 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 124 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 125 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 126 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 127 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 128 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 129 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 130 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 131 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 132 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 133 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 134 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 135 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 136 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 137 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 138 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 139 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 140 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 141 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 142 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 143 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 144 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 145 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 146 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 147 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 148 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 149 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 150 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 151 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 152 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 153 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 154 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 155 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 156 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 157 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 158 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 159 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 160 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 161 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 162 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 163 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 164 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 165 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 166 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 167 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 168 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 169 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 170 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 171 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 172 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 173 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 174 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 175 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 176 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 177 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 178 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 179 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 180 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 181 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 182 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 183 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 184 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 185 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 186 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 187 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 188 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 189 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 190 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 191 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 192 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 193 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 194 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 195 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 196 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 197 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 198 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 199 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 200 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 201 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 202 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 203 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 204 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 205 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 206 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 207 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 208 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_into -i 209 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 210 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 211 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 212 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 213 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 214 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 215 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 216 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 217 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 218 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 219 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 220 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 221 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 222 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 223 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 224 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 225 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 226 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 227 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 228 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 229 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 230 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 231 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 232 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 233 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 234 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 235 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 236 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 237 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 238 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 239 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 240 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 241 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 242 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 243 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 244 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 245 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 246 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 247 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 248 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 249 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 250 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 251 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 252 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 253 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 254 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 255 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 256 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 257 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 258 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 259 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 260 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 261 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 262 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 263 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 264 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 265 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 266 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 267 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 268 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 269 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 270 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 271 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 272 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 273 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 274 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 275 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 276 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 277 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 278 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 279 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 280 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 281 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 282 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 283 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 284 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 285 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 286 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 287 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 288 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 289 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 290 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 291 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 292 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 293 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 294 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 295 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 296 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 297 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 298 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 299 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 300 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 301 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 302 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 303 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 304 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 305 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 306 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 307 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 308 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 309 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 310 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 311 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 312 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 313 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 314 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 315 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 316 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 317 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 318 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 319 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 320 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 321 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 322 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 323 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 324 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 325 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 326 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 327 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 328 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 329 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 330 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 331 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 332 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 333 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 334 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 335 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 336 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 337 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 338 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 339 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 340 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 341 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 342 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 343 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 344 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 345 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 346 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 347 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 348 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 349 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 350 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 351 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 352 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 353 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 354 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 355 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 356 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 357 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 358 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 359 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 360 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 361 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 362 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 363 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 364 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 365 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 366 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 367 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 368 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 369 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 370 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 371 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 372 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 373 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 374 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 375 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 376 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 377 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 378 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 379 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 380 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 381 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 382 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 383 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 384 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 385 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 386 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 387 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 388 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 389 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 390 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 391 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 392 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 393 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 394 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 395 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 396 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 397 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 398 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 399 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 400 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 401 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 402 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 403 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 404 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 405 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 406 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 407 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 408 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 409 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 410 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 411 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 412 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 413 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 414 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 415 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 416 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 417 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 418 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 419 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 420 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 421 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 422 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 423 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 424 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 425 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 426 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 427 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 428 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 429 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 430 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 431 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 432 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 433 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 434 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 435 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 436 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 437 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 438 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 439 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 440 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 441 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 442 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 443 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 444 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 445 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 446 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 447 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 448 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 449 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 450 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 451 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 452 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 453 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 454 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 455 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 456 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 457 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 458 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 459 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 460 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 461 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 462 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 463 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 464 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 465 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 466 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 467 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 468 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 469 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 470 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 471 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 472 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 473 -n "$formas[\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 474 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 475 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 476 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 477 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 478 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 479 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 480 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 481 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 482 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 483 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 484 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 485 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 486 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 487 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 488 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 489 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 490 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 491 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 492 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 493 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 494 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 495 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 496 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 497 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 498 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 499 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 500 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 501 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 502 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 503 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 504 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 505 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 506 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 507 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 508 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 509 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 510 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 511 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 512 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 513 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 514 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 515 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 516 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 517 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 518 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 519 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 520 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 521 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 522 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 523 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 524 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 525 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 526 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 527 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 528 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 529 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 530 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 531 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 532 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 533 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 534 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 535 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 536 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 537 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 538 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 539 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 540 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 541 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 542 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 543 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 544 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 545 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 546 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 547 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 548 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 549 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 550 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 551 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 552 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 553 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 554 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 555 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 556 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 557 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 558 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 559 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 560 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 561 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 562 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 563 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 564 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 565 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 566 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 567 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 568 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 569 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 570 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 571 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 572 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 573 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 574 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 575 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 576 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 577 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 578 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 579 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 580 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 581 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 582 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 583 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 584 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 585 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 586 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 587 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 588 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 589 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 590 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 591 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 592 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 593 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 594 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 595 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 596 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 597 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 598 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 599 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 600 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 601 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 602 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 603 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 604 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 605 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 606 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 607 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 608 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 609 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 610 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 611 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 612 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 613 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 614 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 615 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 616 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 617 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 618 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 619 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 620 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 621 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 622 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 623 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 624 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 625 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 626 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 627 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 628 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 629 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 630 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 631 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 632 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 633 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 634 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 635 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- step_over -i 636 +[62] [Step Debug] -> + +[62] [Step Debug] <- stack_get -i 637 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 638 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 639 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 640 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 641 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 642 -n "$nueva_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 643 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 644 -n "$nueva_linea[\"fields\"][\"num_formas\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 645 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 646 -n "$linea->total_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 647 -n "$servicio->precio_unidad" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 648 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 649 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 650 -n "$linea->total_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 651 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 652 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 653 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 654 -n "$nueva_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 655 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDdhY2RhZWJmNzk1MDY0YTU2MjEzNzUxZjdlOTY1OWIxOTllNTQ2YzQwYTExNjUxZWRjZmE0MDlkNDhlMmQ5ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lclZhbG9yTGluZWFQcmVzdXB1ZXN0bw== +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 656 -n "$linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 657 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 658 -n "$linea->total_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 659 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 660 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 661 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 662 -n "$linea->total_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 663 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 664 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 665 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 666 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 667 -n "$linea->total_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 668 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 669 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 670 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_names -i 671 -d 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 672 -n "$linea->total_linea" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- eval -i 673 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 674 -n "$linea->tipo" -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- context_get -i 675 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- property_get -i 676 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 677 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:18:08.888440 + +[62] Log opened at 2024-05-17 14:18:09.055156 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[64] Log opened at 2024-05-17 14:18:09.055117 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[48] Log opened at 2024-05-17 14:18:09.055225 +[60] Log opened at 2024-05-17 14:18:09.055141 +[59] Log opened at 2024-05-17 14:18:09.055208 +[61] Log opened at 2024-05-17 14:18:09.055130 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[48] [Step Debug] -> + +[62] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[59] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[60] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[59] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[62] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[62] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[64] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[62] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[59] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[48] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[48] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[48] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[64] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 21 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] <- breakpoint_set -i 22 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[59] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 23 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] -> + +[59] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[62] [Step Debug] <- run -i 22 +[60] [Step Debug] <- run -i 24 +[48] [Step Debug] <- run -i 24 +[59] [Step Debug] <- run -i 24 +[64] [Step Debug] <- run -i 24 +[61] [Step Debug] <- run -i 24 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:18:11.236302 + +[62] Log opened at 2024-05-17 14:18:11.246007 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:18:11.323221 + +[64] Log opened at 2024-05-17 14:18:11.333352 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 12 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:18:11.899732 + +[60] Log opened at 2024-05-17 14:18:11.910044 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:18:12.497350 + +[48] Log opened at 2024-05-17 14:18:12.505621 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:18:13.159787 + +[59] [Step Debug] -> + +[48] Log opened at 2024-05-17 14:18:13.167941 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] Log closed at 2024-05-17 14:18:13.170122 + +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[48] [Step Debug] <- run -i 12 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:18:13.865224 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:18:14.081471 + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:18:14.275825 + +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:18:14.465246 + +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:18:14.648694 + +[64] Log opened at 2024-05-17 14:18:14.784664 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[48] Log opened at 2024-05-17 14:18:14.802071 +[48] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.48' +[48] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[48] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[48] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[48] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[48] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[48] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[48] [Step Debug] -> + +[48] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[48] [Step Debug] -> + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[48] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[61] Log opened at 2024-05-17 14:18:14.816863 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[64] [Step Debug] <- run -i 12 +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[48] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] -> + +[48] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[48] [Step Debug] -> + +[61] [Step Debug] <- run -i 12 +[48] [Step Debug] <- run -i 12 +[60] Log opened at 2024-05-17 14:18:14.968400 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 5 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:18:16.016113 + +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] -> + +[48] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[48] [Step Debug] -> + +[48] Log closed at 2024-05-17 14:18:16.409725 + +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:18:16.892416 + +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:18:17.442945 + +[56] Log opened at 2024-05-17 14:18:30.630133 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 922 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 13 +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- stack_get -i 14 +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 15 -n "$linea->total_linea" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[56] [Step Debug] -> + +[56] [Step Debug] <- property_get -i 17 -n "$linea->tipo" -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_names -i 18 -d 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 20 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:18:38.049713 + +[66] Log opened at 2024-05-17 14:18:53.607441 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1221 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 12 +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 13 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 14 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 16 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 17 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 19 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 20 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 21 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 23 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 24 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 26 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 27 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 28 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 30 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 31 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 33 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 34 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 35 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 37 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 38 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 40 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 41 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 42 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 43 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 44 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 45 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 47 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 48 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 49 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 51 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 52 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 54 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 55 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 56 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 58 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 59 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 60 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 61 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 62 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 63 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 64 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 65 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 66 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 67 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 68 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 69 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 71 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 72 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 73 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 74 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 75 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 76 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 77 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 78 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 79 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 80 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 81 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 82 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 83 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 85 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 86 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 87 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 88 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 89 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 90 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 91 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 92 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 93 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 94 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 95 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 96 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 97 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 98 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 99 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 101 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 102 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 103 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 104 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 105 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 106 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 107 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 108 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 110 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 111 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 112 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 113 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 114 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 115 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 116 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 117 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 118 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_remove -i 120 -d 660003 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_remove -i 121 -d 660001 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 122 -n "$cambios" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 123 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 124 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 125 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 126 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 127 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 128 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 129 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 130 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnMDdhY2RhZWJmNzk1MDY0YTU2MjEzNzUxZjdlOTY1OWIxOTllNTQ2YzQwYTExNjUxZWRjZmE0MDlkNDhlMmQ5ZCddPVByZXN1cHVlc3RvU2VydmljZTo6b2J0ZW5lclZhbG9yTGluZWFQcmVzdXB1ZXN0bw== +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 131 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 132 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 133 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 134 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 136 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 137 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 138 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 139 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 140 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 141 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 143 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 144 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 145 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 146 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:20:31.581048 + +[66] Log opened at 2024-05-17 14:20:31.704878 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[62] Log opened at 2024-05-17 14:20:31.712993 +[59] Log opened at 2024-05-17 14:20:31.712892 +[58] Log opened at 2024-05-17 14:20:31.713207 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[65] Log opened at 2024-05-17 14:20:31.713133 +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] Log opened at 2024-05-17 14:20:31.714773 +[66] [Step Debug] -> + +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] -> + +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] -> + +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[64] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[59] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Fatal error" +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[58] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Parse error" +[65] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] <- feature_set -i 5 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 6 -n max_data -v 8192 +[65] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[58] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[64] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[64] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[66] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[64] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[62] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[59] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[64] [Step Debug] -> + +[59] [Step Debug] -> + +[62] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[62] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[59] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[62] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[64] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Parse error" +[62] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[59] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[64] [Step Debug] -> + +[62] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 7 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 8 -n max_data -v 8192 +[59] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[64] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[62] [Step Debug] -> + +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 9 -n notify_ok -v 1 +[59] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 10 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[58] [Step Debug] -> + +[65] [Step Debug] -> + +[66] [Step Debug] <- run -i 11 +[62] [Step Debug] <- run -i 11 +[59] [Step Debug] <- run -i 11 +[64] [Step Debug] <- run -i 11 +[65] [Step Debug] <- run -i 13 +[58] [Step Debug] <- run -i 13 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:20:32.415177 + +[66] Log opened at 2024-05-17 14:20:32.425777 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 11 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:20:33.953071 + +[65] Log opened at 2024-05-17 14:20:33.962378 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 11 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:20:34.848086 + +[58] Log opened at 2024-05-17 14:20:34.860511 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 11 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:20:35.527518 + +[64] Log opened at 2024-05-17 14:20:35.537614 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 11 +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:20:36.129581 + +[59] Log opened at 2024-05-17 14:20:36.139313 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 11 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:20:36.752381 + +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:20:36.938178 + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:20:37.131318 + +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:20:37.391630 + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:20:37.599349 + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:20:37.762485 + +[58] Log opened at 2024-05-17 14:20:37.818632 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 11 +[59] Log opened at 2024-05-17 14:20:37.911004 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[65] Log opened at 2024-05-17 14:20:37.911764 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[65] [Step Debug] <- run -i 13 +[59] [Step Debug] <- run -i 13 +[64] Log opened at 2024-05-17 14:20:37.997460 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 5 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:20:39.177910 + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:20:39.734424 + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:20:40.271189 + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:20:40.778702 + +[61] Log opened at 2024-05-17 14:21:55.575041 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 12 +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 13 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 14 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 16 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 17 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[61] [Step Debug] -> + +[60] Log opened at 2024-05-17 14:22:00.455061 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 12 +[61] [Step Debug] <- step_into -i 19 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 20 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 21 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 23 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 24 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 26 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 27 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 28 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 30 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 31 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 33 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 34 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 35 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 37 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 38 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 40 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 41 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 42 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 43 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 44 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 45 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 46 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 48 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 49 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 51 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 52 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 54 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 55 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 56 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 58 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 59 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 61 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 62 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 63 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 64 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 65 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 66 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 68 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 69 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 70 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 72 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 73 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 75 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 76 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 77 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 79 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 80 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 82 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 83 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 84 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 86 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 87 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 88 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 89 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 90 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 91 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 92 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 93 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 94 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 95 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 96 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 97 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 98 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 99 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 100 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 101 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 102 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 103 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 104 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 105 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 106 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 107 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 108 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 109 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 110 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 111 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 112 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 113 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 115 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 116 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 117 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 118 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 120 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 121 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 122 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 123 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 124 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 125 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 126 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 127 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 128 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 129 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 130 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 131 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 132 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 133 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 134 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 136 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 137 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 138 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 139 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 140 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 141 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 142 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 143 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 144 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 145 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 146 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 147 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 148 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 149 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 150 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 151 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 152 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 153 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 154 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 155 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 156 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 157 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 158 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 159 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 160 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 161 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 162 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 163 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 164 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 165 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 166 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 167 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 168 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 169 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 170 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 171 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 172 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 173 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 174 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 175 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 176 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 177 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 178 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 179 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 180 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 181 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 182 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 183 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 184 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 185 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 186 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 187 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 188 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 189 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 190 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 191 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 192 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 193 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 194 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 195 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 196 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 197 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 198 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 199 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 200 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 201 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 202 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 203 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 204 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 205 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 206 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 207 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 208 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 209 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 210 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 211 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 212 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 213 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 214 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 215 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 216 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 217 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 218 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 219 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 220 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 221 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 222 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 223 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 224 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 225 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 226 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 227 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 228 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 229 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 230 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 231 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 232 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 233 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 234 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 235 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 236 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 237 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 238 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 239 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 240 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 241 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 242 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 243 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 244 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 245 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 246 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 247 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 248 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 249 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 250 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 251 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 252 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 253 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 254 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 255 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 256 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 257 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 258 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 259 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 260 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 261 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 262 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 263 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 264 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 265 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 266 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 267 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 268 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 269 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 270 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 271 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 272 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 273 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 274 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 275 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 276 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 277 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 278 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 279 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 280 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 281 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 282 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 283 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 284 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 285 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 286 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 287 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 288 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 289 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 290 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 291 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 292 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 293 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 294 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 295 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 296 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 297 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 298 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 299 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 300 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 301 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 302 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 303 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 304 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 305 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 306 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 307 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 308 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 309 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 310 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 311 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 312 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 313 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 314 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 315 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 316 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 317 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 318 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 319 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 320 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 321 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 322 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 323 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 324 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 325 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 326 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 327 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 328 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 329 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 330 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 331 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 332 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 333 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 334 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 335 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 336 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 337 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 338 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 339 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 340 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 341 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 342 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 343 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 344 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 345 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 346 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 347 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 348 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 349 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 350 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 351 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 352 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 353 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 354 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 355 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 356 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 357 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 358 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 359 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 360 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 361 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 362 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 363 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 364 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 365 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 366 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 367 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 368 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 369 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 370 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 371 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 372 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 373 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 374 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 375 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 376 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 377 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 378 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 379 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 380 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 381 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 382 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 383 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 384 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 385 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 386 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 387 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 388 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 389 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 390 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 391 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 392 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 393 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 394 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 395 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 396 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 397 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 398 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 399 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 400 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- step_over -i 401 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 402 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 403 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 404 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 405 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 406 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 407 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 408 -n "$cliente_id" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 409 -n "$config" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 410 -n "$tiempo" -d 0 -c 0 +[61] [Step Debug] -> + +[56] Log opened at 2024-05-17 14:23:33.538927 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 12 +[61] [Step Debug] <- run -i 411 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 412 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 413 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 414 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 415 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 416 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 417 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 418 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 419 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 420 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 421 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 422 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 423 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 424 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 425 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 426 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 427 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 428 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 429 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 430 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 431 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 432 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 433 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 434 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 435 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 436 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 437 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 438 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 439 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 440 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 441 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 442 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 443 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 444 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 445 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 446 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 447 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 448 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 449 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 450 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 451 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 452 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 453 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 454 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 455 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 456 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 457 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 458 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 459 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 460 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 461 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 462 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 463 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 464 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 465 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 466 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 467 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 468 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 469 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 470 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 471 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 472 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 473 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 474 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 475 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 476 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 477 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 478 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 479 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 480 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 481 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 482 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 483 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 484 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 485 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 486 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 487 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 488 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 489 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 490 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 491 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 492 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 493 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 494 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 495 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 496 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 497 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 498 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 499 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 500 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 501 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 502 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 503 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 504 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 505 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 506 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 507 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 508 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 509 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 510 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 511 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 512 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 513 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 514 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 515 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 516 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 517 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 518 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 519 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 520 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 521 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 522 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 523 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 524 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 525 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 526 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 527 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 528 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 529 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 530 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 531 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 532 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 533 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 534 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 535 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 536 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 537 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 538 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 539 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 540 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 541 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 542 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 543 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 544 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 545 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 546 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 547 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 548 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 549 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 550 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 551 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 552 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 553 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 554 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 555 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 556 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 557 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 558 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 559 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 560 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 561 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 562 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 563 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 564 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 565 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 566 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 567 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 568 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 569 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 570 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 571 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 572 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 573 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 574 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 575 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 576 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 577 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 578 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 579 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 580 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 581 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 582 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 583 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 584 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 585 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 586 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 587 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 588 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 589 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 590 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 591 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 592 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 593 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 594 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 595 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 596 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 597 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 598 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 599 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 600 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 601 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 602 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 603 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 604 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 605 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 606 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 607 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 608 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 609 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 610 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 611 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 612 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 613 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 614 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 615 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 616 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 617 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 618 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 619 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 620 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 621 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 622 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 623 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 624 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 625 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 626 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 627 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 628 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 629 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 630 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 631 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 632 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 633 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 634 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 635 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 636 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 637 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 638 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 639 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 640 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 641 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 642 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 643 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 644 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 645 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 646 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 647 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 648 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 649 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 650 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 651 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 652 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 653 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 654 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 655 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 656 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 657 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 658 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 659 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 660 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 661 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 662 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 663 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 664 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 665 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 666 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 667 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 668 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 669 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 670 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 671 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 672 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 673 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 674 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 675 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 676 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 677 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 678 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 679 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 680 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 681 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 682 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 683 +[61] [Step Debug] -> + +[61] [Step Debug] <- stack_get -i 684 +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 685 -n "$linea->total_linea" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- eval -i 686 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[61] [Step Debug] -> + +[61] [Step Debug] <- property_get -i 687 -n "$linea->tipo" -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_names -i 688 -d 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- context_get -i 689 -d 0 -c 0 +[61] [Step Debug] -> + +[61] [Step Debug] <- stop -i 690 +[61] [Step Debug] -> + +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:24:04.378918 + +[60] [Step Debug] -> + +[60] [Step Debug] <- stop -i 13 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:24:05.533891 + +[61] Log opened at 2024-05-17 14:24:05.816267 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 12 +[56] [Step Debug] -> + +[56] [Step Debug] <- stop -i 13 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:24:06.288518 + +[56] Log opened at 2024-05-17 14:24:06.340839 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 12 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:24:06.909293 + +[67] Log opened at 2024-05-17 14:24:07.069867 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 12 +[62] Log opened at 2024-05-17 14:24:07.216753 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:24:07.263947 + +[62] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:24:08.499495 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:24:09.859310 + +[67] Log opened at 2024-05-17 14:24:10.127636 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 12 +[62] Log opened at 2024-05-17 14:24:10.549878 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[66] Log opened at 2024-05-17 14:24:11.312085 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 12 +[56] Log opened at 2024-05-17 14:24:11.464315 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 12 +[61] Log opened at 2024-05-17 14:24:12.088113 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] Log closed at 2024-05-17 14:24:12.094823 + +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 12 +[62] Log opened at 2024-05-17 14:24:12.551710 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:24:13.037077 + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:24:13.510847 + +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:24:14.440527 + +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:24:15.352845 + +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:24:15.774148 + +[62] Log opened at 2024-05-17 14:24:18.323352 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:24:22.101092 + +[62] Log opened at 2024-05-17 14:24:22.190444 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[65] Log opened at 2024-05-17 14:24:22.231210 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[65] [Step Debug] <- run -i 5 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:24:22.748790 + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:24:23.758956 + +[62] Log opened at 2024-05-17 14:24:23.877903 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[59] Log opened at 2024-05-17 14:24:24.024937 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[65] Log opened at 2024-05-17 14:24:24.040186 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[59] [Step Debug] -> + +[64] Log opened at 2024-05-17 14:24:24.052945 +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] -> + +[65] [Step Debug] -> + +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] -> + +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[60] Log opened at 2024-05-17 14:24:24.067795 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[59] [Step Debug] <- run -i 12 +[65] [Step Debug] -> + +[60] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[60] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[60] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[65] [Step Debug] -> + +[60] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[65] [Step Debug] -> + +[60] [Step Debug] <- run -i 12 +[64] [Step Debug] -> + +[65] [Step Debug] <- run -i 12 +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[64] [Step Debug] <- run -i 12 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:24:25.163283 + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:24:26.553524 + +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:24:27.004512 + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:24:27.928735 + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:24:28.702447 + +[67] Log opened at 2024-05-17 14:24:37.383415 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:24:38.745880 + +[67] Log opened at 2024-05-17 14:24:39.753951 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:24:41.380939 + +[67] Log opened at 2024-05-17 14:24:43.073266 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:24:44.732046 + +[67] Log opened at 2024-05-17 14:24:45.992074 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[67] [Step Debug] -> + +[67] [Step Debug] <- run -i 12 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:24:47.685061 + +[56] Log opened at 2024-05-17 14:24:53.322606 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- run -i 12 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:24:54.976807 + +[66] Log opened at 2024-05-17 14:25:03.055689 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 12 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:25:04.751253 + +[66] Log opened at 2024-05-17 14:25:05.087671 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 12 +[61] Log opened at 2024-05-17 14:25:05.888088 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- run -i 12 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:25:06.688050 + +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:25:07.378836 + +[66] Log opened at 2024-05-17 14:25:07.813627 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 12 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:25:09.459361 + +[58] Log opened at 2024-05-17 14:25:21.896690 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 12 +[62] Log opened at 2024-05-17 14:25:23.747578 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[62] [Step Debug] <- run -i 12 +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:25:24.432717 + +[58] Log opened at 2024-05-17 14:25:25.666141 +[58] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.58' +[58] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[58] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[58] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[58] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[58] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[58] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[58] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[58] [Step Debug] -> + +[58] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[58] [Step Debug] -> + +[58] [Step Debug] <- run -i 12 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:25:26.095612 + +[58] [Step Debug] -> + +[58] Log closed at 2024-05-17 14:25:27.303614 + +[65] Log opened at 2024-05-17 14:25:32.655647 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 12 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:25:34.398839 + +[65] Log opened at 2024-05-17 14:25:37.657636 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 12 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:25:39.296210 + +[60] Log opened at 2024-05-17 14:27:24.799037 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 13 +[60] [Step Debug] -> + +[60] [Step Debug] -> + +[60] [Step Debug] -> + +[60] [Step Debug] -> + +[60] [Step Debug] -> + +[60] [Step Debug] <- stack_get -i 14 +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 15 -n "$linea->total_linea" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 17 -n "$linea->tipo" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_names -i 18 -d 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[60] [Step Debug] -> + +[59] Log opened at 2024-05-17 14:27:30.070812 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 99 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 12 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 13 +[60] [Step Debug] <- breakpoint_remove -i 20 -d 600054 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 21 +[60] [Step Debug] -> + +[60] [Step Debug] <- stack_get -i 22 +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 23 -n "$linea->total_linea" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- eval -i 24 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 25 -n "$linea->tipo" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_names -i 26 -d 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 28 +[60] [Step Debug] -> + +[60] [Step Debug] <- stack_get -i 29 +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 30 -n "$linea->total_linea" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- eval -i 31 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 32 -n "$linea->tipo" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_names -i 33 -d 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 35 +[60] [Step Debug] -> + +[60] [Step Debug] <- stack_get -i 36 +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 37 -n "$linea->total_linea" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- eval -i 38 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 39 -n "$linea->tipo" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_names -i 40 -d 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_get -i 41 -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 42 +[60] [Step Debug] -> + +[60] [Step Debug] <- stack_get -i 43 +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 44 -n "$linea->total_linea" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- eval -i 45 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[60] [Step Debug] -> + +[60] [Step Debug] <- property_get -i 46 -n "$linea->tipo" -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_names -i 47 -d 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- context_get -i 48 -d 0 -c 0 +[60] [Step Debug] -> + +[60] [Step Debug] <- run -i 49 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:27:43.533126 + +[60] Log opened at 2024-05-17 14:27:43.683936 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[64] Log opened at 2024-05-17 14:27:43.684656 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[67] Log opened at 2024-05-17 14:27:43.685092 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] Log opened at 2024-05-17 14:27:43.685748 +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] Log opened at 2024-05-17 14:27:43.691645 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] -> + +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[56] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[64] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[56] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[61] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[60] [Step Debug] -> + +[56] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] -> + +[67] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[67] [Step Debug] -> + +[61] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[67] [Step Debug] -> + +[61] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] -> + +[60] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[60] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[60] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[60] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[56] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[61] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[67] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[67] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[56] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] <- breakpoint_set -i 13 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[60] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[56] [Step Debug] <- breakpoint_set -i 14 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 15 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[67] [Step Debug] -> + +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] <- breakpoint_set -i 16 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[60] [Step Debug] -> + +[56] [Step Debug] -> + +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[61] [Step Debug] <- breakpoint_set -i 17 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[67] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] <- breakpoint_set -i 18 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[56] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 19 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 20 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 20 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 14 -d 590057 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 15 -d 590057 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 16 -d 590057 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 17 -d 590057 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 18 -d 590057 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 19 -d 590057 +[59] [Step Debug] -> + +[60] [Step Debug] <- run -i 17 +[61] [Step Debug] <- run -i 21 +[64] [Step Debug] <- run -i 21 +[67] [Step Debug] <- run -i 19 +[56] [Step Debug] <- run -i 19 +[59] [Step Debug] <- stack_get -i 20 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 21 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 22 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 23 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 24 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 26 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 27 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 28 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 30 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 31 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 32 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 33 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 34 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 35 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 37 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 38 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 40 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 41 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 42 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 43 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 44 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 45 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 47 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 48 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 49 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 50 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 51 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 52 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 54 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 55 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 56 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 57 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 58 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 59 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 61 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 62 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 63 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 64 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 65 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 66 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 67 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 68 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 69 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 70 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 72 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 73 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 75 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 76 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 77 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 79 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 80 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 82 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 83 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 84 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 86 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 87 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 88 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 89 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 90 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 91 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 92 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 93 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 94 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 96 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 97 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 98 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 99 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 100 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 101 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 102 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 103 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 104 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 105 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 106 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 107 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 108 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 110 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 111 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 112 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 113 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 114 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 115 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 116 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 117 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 118 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 119 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 120 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 121 +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 122 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 123 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 124 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 125 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 126 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 127 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 128 -d 590058 +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 129 +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:28:04.127945 + +[59] Log opened at 2024-05-17 14:28:04.136634 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_remove -i 18 -d 610068 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:28:04.503574 + +[60] Log opened at 2024-05-17 14:28:04.511731 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[60] [Step Debug] -> + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_remove -i 22 -d 610068 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:28:05.178614 + +[64] Log opened at 2024-05-17 14:28:05.187397 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_remove -i 20 -d 610068 +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:28:05.790837 + +[56] Log opened at 2024-05-17 14:28:05.798536 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_remove -i 22 -d 610068 +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:28:06.465711 + +[61] Log opened at 2024-05-17 14:28:06.473929 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[61] [Step Debug] -> + +[61] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[61] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[60] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[56] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[61] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] -> + +[61] [Step Debug] -> + +[60] [Step Debug] -> + +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_remove -i 20 -d 610068 +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:28:07.116668 + +[62] Log opened at 2024-05-17 14:28:19.388111 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] Log opened at 2024-05-17 14:28:19.391985 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] -> + +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[66] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[62] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[62] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[62] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[59] [Step Debug] <- run -i 12 +[60] [Step Debug] <- run -i 12 +[64] [Step Debug] <- run -i 12 +[56] [Step Debug] <- run -i 12 +[61] [Step Debug] <- run -i 12 +[62] [Step Debug] <- run -i 12 +[66] [Step Debug] <- run -i 12 +[62] [Step Debug] -> + +[62] Log closed at 2024-05-17 14:28:20.806911 + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:28:21.005409 + +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:28:21.252773 + +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:28:21.425243 + +[56] [Step Debug] -> + +[56] Log closed at 2024-05-17 14:28:21.607232 + +[61] [Step Debug] -> + +[61] Log closed at 2024-05-17 14:28:21.788117 + +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 13 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 14 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 16 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 17 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 19 -n "$cliente_id" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 20 -n "$config" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 21 -n "$tiempo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_into -i 22 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 23 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 24 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 25 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 26 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 27 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- step_over -i 29 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 30 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 31 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 32 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 33 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 34 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 35 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 36 -n "$config" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 37 -n "$tiempo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 38 -n "$this" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 39 -n "$this->db" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 40 -n "$values" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 41 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 42 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 43 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 45 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 46 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 48 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 49 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 50 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 52 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 53 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 54 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 55 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 56 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 57 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 58 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 59 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 60 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 61 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 62 +[66] [Step Debug] -> + +[66] [Step Debug] <- stack_get -i 63 +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 64 -n "$linea->total_linea" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- eval -i 65 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[66] [Step Debug] -> + +[66] [Step Debug] <- property_get -i 66 -n "$linea->tipo" -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_names -i 67 -d 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- context_get -i 68 -d 0 -c 0 +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 69 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:32:01.204310 + +[66] Log opened at 2024-05-17 14:32:01.538528 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] Log opened at 2024-05-17 14:32:01.544711 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[65] Log opened at 2024-05-17 14:32:01.545757 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[67] Log opened at 2024-05-17 14:32:01.547968 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] -> + +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] -> + +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] -> + +[64] Log opened at 2024-05-17 14:32:01.552407 +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] Log opened at 2024-05-17 14:32:01.552391 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] -> + +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] -> + +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[67] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[67] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[67] [Step Debug] -> + +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[69] [Step Debug] -> + +[68] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[67] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[65] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[69] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[67] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[69] [Step Debug] -> + +[64] [Step Debug] -> + +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[66] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 2 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[69] [Step Debug] -> + +[65] [Step Debug] -> + +[66] [Step Debug] -> + +[64] [Step Debug] -> + +[67] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[69] [Step Debug] <- breakpoint_set -i 3 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[67] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[68] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[69] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Error" +[68] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[65] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[69] [Step Debug] <- breakpoint_set -i 4 -t exception -x "Error" +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[68] [Step Debug] -> + +[69] [Step Debug] -> + +[67] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[64] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[67] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[69] [Step Debug] -> + +[64] [Step Debug] -> + +[67] [Step Debug] -> + +[68] [Step Debug] -> + +[65] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[67] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[69] [Step Debug] -> + +[64] [Step Debug] -> + +[65] [Step Debug] -> + +[68] [Step Debug] -> + +[67] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[67] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[69] [Step Debug] -> + +[64] [Step Debug] -> + +[65] [Step Debug] -> + +[67] [Step Debug] -> + +[68] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[69] [Step Debug] <- feature_set -i 8 -n max_children -v 100 +[65] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[67] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[69] [Step Debug] -> + +[65] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 9 -n max_data -v 8192 +[68] [Step Debug] -> + +[69] [Step Debug] -> + +[67] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[67] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 10 -n notify_ok -v 1 +[69] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 11 -n resolved_breakpoints -v 1 +[69] [Step Debug] -> + +[69] [Step Debug] <- run -i 12 +[64] [Step Debug] <- run -i 12 +[65] [Step Debug] <- run -i 12 +[68] [Step Debug] <- run -i 12 +[67] [Step Debug] <- run -i 12 +[66] [Step Debug] <- run -i 12 +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:32:02.422070 + +[66] Log opened at 2024-05-17 14:32:02.433700 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[66] [Step Debug] -> + +[66] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[66] [Step Debug] -> + +[66] [Step Debug] <- run -i 12 +[68] [Step Debug] -> + +[68] Log closed at 2024-05-17 14:32:03.934852 + +[68] Log opened at 2024-05-17 14:32:03.943248 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[68] [Step Debug] -> + +[68] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[68] [Step Debug] -> + +[69] [Step Debug] -> + +[69] Log closed at 2024-05-17 14:32:03.965847 + +[69] Log opened at 2024-05-17 14:32:03.974430 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[69] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[69] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[69] [Step Debug] -> + +[69] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[69] [Step Debug] -> + +[68] [Step Debug] <- run -i 12 +[69] [Step Debug] <- run -i 5 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:32:04.870399 + +[65] Log opened at 2024-05-17 14:32:04.878486 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:32:05.540059 + +[64] Log opened at 2024-05-17 14:32:05.548856 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[67] [Step Debug] -> + +[67] Log closed at 2024-05-17 14:32:06.222328 + +[66] [Step Debug] -> + +[66] Log closed at 2024-05-17 14:32:06.452635 + +[69] [Step Debug] -> + +[69] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[69] [Step Debug] -> + +[69] Log closed at 2024-05-17 14:32:06.683058 + +[68] [Step Debug] -> + +[68] Log closed at 2024-05-17 14:32:06.869188 + +[59] Log opened at 2024-05-17 14:32:16.075683 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 12 +[65] [Step Debug] <- run -i 12 +[64] [Step Debug] <- run -i 12 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:32:17.185021 + +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:32:17.386505 + +[64] Log opened at 2024-05-17 14:32:17.598759 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[64] [Step Debug] -> + +[65] Log opened at 2024-05-17 14:32:17.655004 +[65] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.65' +[65] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[65] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[65] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[65] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[65] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[65] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] <- run -i 12 +[65] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[65] [Step Debug] -> + +[60] Log opened at 2024-05-17 14:32:17.682374 +[60] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.60' +[60] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[60] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[60] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[60] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[60] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[60] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[60] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[60] [Step Debug] -> + +[60] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[60] [Step Debug] -> + +[65] [Step Debug] <- run -i 12 +[60] [Step Debug] <- run -i 5 +[56] Log opened at 2024-05-17 14:32:17.808843 +[56] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.56' +[56] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[56] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[56] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[56] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[56] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[56] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[56] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[56] [Step Debug] -> + +[56] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- stack_get -i 13 +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 14 -n "$linea->total_linea" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- eval -i 15 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[59] [Step Debug] -> + +[59] [Step Debug] <- property_get -i 16 -n "$linea->tipo" -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_names -i 17 -d 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[59] [Step Debug] -> + +[59] [Step Debug] <- breakpoint_remove -i 19 -d 590072 +[56] [Step Debug] <- breakpoint_remove -i 12 -d 560105 +[56] [Step Debug] -> + +[59] [Step Debug] -> + +[59] [Step Debug] <- run -i 20 +[59] [Step Debug] -> + +[59] Log closed at 2024-05-17 14:32:24.438099 + +[64] [Step Debug] -> + +[64] [Step Debug] <- breakpoint_remove -i 13 -d 640084 +[64] [Step Debug] -> + +[64] Log closed at 2024-05-17 14:32:24.818542 + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] -> + +[65] [Step Debug] <- breakpoint_remove -i 13 -d 650065 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 14 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 15 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 16 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 17 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 18 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[65] [Step Debug] -> + +[62] Log opened at 2024-05-17 14:32:33.346569 +[62] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.62' +[62] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[62] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[62] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[62] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[62] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[62] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[62] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1140 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1145 +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[62] [Step Debug] -> + +[62] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[62] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 20 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 21 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 22 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 23 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 24 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 25 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 27 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 28 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 29 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 30 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 31 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 32 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 33 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 34 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 35 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 36 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 37 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 38 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 39 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 41 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 42 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 43 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 45 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 46 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 48 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 49 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 50 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 52 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 53 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 54 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 55 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 56 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 57 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 58 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 59 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 60 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 62 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 63 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 64 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 65 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 66 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 67 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 68 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 69 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 70 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 71 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 72 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 73 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 74 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 75 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 76 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 77 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 78 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 79 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 80 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 81 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 82 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 83 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 84 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 85 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 86 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 87 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 88 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 89 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 90 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 91 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 92 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 93 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 94 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 95 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 96 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 97 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 98 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 99 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 100 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 101 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 102 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 103 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 104 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 105 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 106 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 107 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 108 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 109 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 110 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 111 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 112 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 113 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 114 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 115 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 116 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 117 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 118 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 119 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 120 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 121 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 122 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 123 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 124 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 125 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 126 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 127 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 128 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 129 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 130 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 131 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 132 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 133 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 134 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 135 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 136 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 137 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 138 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 139 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 140 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 141 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 142 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 143 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 144 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 145 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 146 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 147 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 148 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 149 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 150 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 151 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 152 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 153 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 154 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 155 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 156 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 157 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 158 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 159 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 160 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 161 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 162 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 163 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 164 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 165 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 166 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 167 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 168 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 169 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 170 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 171 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 172 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 173 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 174 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 175 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 176 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 177 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 178 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 179 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 180 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 181 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 182 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 183 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 184 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 185 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 186 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 187 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 188 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 189 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 190 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 191 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 192 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 193 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 194 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 195 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 196 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 197 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 198 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 199 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 200 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 201 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 202 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 203 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 204 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 205 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 206 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 207 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 208 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 209 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 210 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 211 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 212 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 213 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 214 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 215 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 216 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 217 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 218 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 219 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 220 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 221 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 222 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 223 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 224 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 225 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 226 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 227 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 228 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 229 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 230 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 231 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 232 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 233 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 234 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 235 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 236 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 237 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 238 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 239 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 240 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 241 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 242 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 243 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 244 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 245 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 246 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 247 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 248 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 249 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 250 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 251 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 252 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 253 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 254 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 255 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 256 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 257 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 258 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 259 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 260 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 261 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 262 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 263 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 264 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 265 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 266 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 267 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 268 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 269 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 270 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 271 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 272 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 273 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 274 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 275 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 276 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 277 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 278 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 279 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 280 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 281 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 282 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 283 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 284 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 285 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 286 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 287 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 288 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 289 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 290 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 291 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 292 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 293 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 294 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 295 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 296 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 297 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 298 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 299 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 300 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 301 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 302 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 303 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 304 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 305 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 306 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 307 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 308 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 309 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 310 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 311 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 312 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 313 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 314 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 315 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 316 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 317 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 318 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 319 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 320 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 321 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 322 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 323 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 324 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 325 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 326 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 327 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 328 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 329 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 330 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- step_over -i 331 +[65] [Step Debug] -> + +[65] [Step Debug] <- stack_get -i 332 +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 333 -n "$linea->total_linea" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- eval -i 334 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnZDliZDI2MmI3Y2RlNmYxYzZjYjMyZmIwNGQ5YWQ1ZDNmNzM4ZmYzOThiNjE4ZDZiZGU5NTNmM2Q5ZWRlOTRlZSddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2xpbmVhJ10sMik= +[65] [Step Debug] -> + +[65] [Step Debug] <- property_get -i 335 -n "$linea->tipo" -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_names -i 336 -d 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- context_get -i 337 -d 0 -c 0 +[65] [Step Debug] -> + +[65] [Step Debug] <- run -i 338 +[65] [Step Debug] -> + +[65] Log closed at 2024-05-17 14:33:33.693996 + +[60] [Step Debug] -> + +[60] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 140 +[60] [Step Debug] -> + +[60] Log closed at 2024-05-17 14:33:34.596784 + +[56] [Step Debug] <- stop -i 13 +[62] [Step Debug] <- stop -i 11 +[56] [Step Debug] -> + +[62] [Step Debug] -> + +[67] Log opened at 2024-05-17 14:34:06.673347 +[67] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.67' +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log opened at 2024-05-17 14:34:11.250980 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[67] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[67] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[67] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[67] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[67] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[67] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[67] Log closed at 2024-05-17 14:34:12.371265 + +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-05-17 14:34:16.457297 + +[68] Log opened at 2024-05-17 14:34:16.619967 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[61] Log opened at 2024-05-17 14:34:16.619983 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[64] Log opened at 2024-05-17 14:34:16.620477 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[59] Log opened at 2024-05-17 14:34:16.621836 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[66] Log opened at 2024-05-17 14:34:16.622010 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[69] Log opened at 2024-05-17 14:34:16.621999 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-05-17 14:34:18.309714 + +[66] Log opened at 2024-05-17 14:34:18.317189 +[66] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.66' +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-05-17 14:34:18.638105 + +[59] Log opened at 2024-05-17 14:34:18.645618 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-05-17 14:34:19.198834 + +[69] Log opened at 2024-05-17 14:34:19.207125 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-17 14:34:19.798713 + +[64] Log opened at 2024-05-17 14:34:19.807826 +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-17 14:34:20.412346 + +[68] Log opened at 2024-05-17 14:34:20.418463 +[68] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.68' +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[68] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[68] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[68] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[68] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[68] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[68] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[68] Log closed at 2024-05-17 14:34:20.958875 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-05-17 14:34:21.011484 + +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[66] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[66] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[66] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[66] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[66] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[66] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[66] Log closed at 2024-05-17 14:34:21.274797 + +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-05-17 14:34:21.509844 + +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-05-17 14:34:21.731767 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-17 14:34:21.941625 + +[59] Log opened at 2024-05-17 14:34:22.014826 +[59] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.59' +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log opened at 2024-05-17 14:34:22.103216 +[64] Log opened at 2024-05-17 14:34:22.103337 +[69] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.69' +[64] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.64' +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log opened at 2024-05-17 14:34:22.149929 +[61] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.61' +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[59] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[59] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[59] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[59] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[59] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[59] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[59] Log closed at 2024-05-17 14:34:23.191146 + +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[64] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[64] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[64] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[64] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[64] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[64] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[64] Log closed at 2024-05-17 14:34:23.669967 + +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[69] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[69] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[69] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[69] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[69] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[69] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[69] Log closed at 2024-05-17 14:34:24.083790 + +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[61] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[61] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[61] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[61] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[61] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', poll success, but error: Operation now in progress (29). +[61] [Step Debug] ERR: Could not connect to debugging client. Tried: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port). +[61] Log closed at 2024-05-17 14:34:24.537373 +