diff --git a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php index 37f31b54..1d200354 100755 --- a/ci4/app/Controllers/Presupuestos/Presupuestocliente.php +++ b/ci4/app/Controllers/Presupuestos/Presupuestocliente.php @@ -671,7 +671,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'servicios' => $servicios, ); - $return_data = $this->calcular_presupuesto($datos_presupuesto, true); //TRUE FOR DEBUG + $return_data = $this->calcular_presupuesto($datos_presupuesto, 0, true); //TRUE FOR DEBUG array_merge($return_data, [$csrfTokenName => $newTokenHash]); return $this->respond($return_data); @@ -840,7 +840,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'servicios' => $servicios, ); - $resultado_presupuesto = $this->calcular_presupuesto($datos_presupuesto , true); + $resultado_presupuesto = $this->calcular_presupuesto($datos_presupuesto , $selected_tirada, true); if(isset($resultado_presupuesto['errors'])){ $errors = $resultado_presupuesto['errors']; @@ -863,8 +863,8 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController for ($i=0; $icoste); $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; + $resultado_presupuesto['info']['totales'][$i]['coste_envio'] += $coste; + $resultado_presupuesto['info']['totales'][$i]['margen_envio'] += $margen; } } } @@ -888,14 +888,14 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController for ($i=0; $i $tirada[$i], @@ -907,7 +907,7 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController )); } else{ - $resumen_totales = $resultado_presupuesto['totales'][$i]; + $resumen_totales = $resultado_presupuesto['info']['totales'][$i]; } } @@ -1099,9 +1099,10 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController return $data; } - protected function calcular_presupuesto($datos_entrada , $extra_info =false) + protected function calcular_presupuesto($datos_entrada , $selected_tirada, $extra_info =false) { try { + $return_data = []; if($extra_info){ $info = [ @@ -1541,9 +1542,22 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'porcentajeMargenImpresion' => $porcentajeMargenImpresion, 'porcentajeMargenServicios' => $porcentajeMargenServicios)); } + + if($extra_info && $tirada[$t] == $selected_tirada){ + + $info['lomo_cubierta'] = $lomo; + $info['lomo_sobrecubierta'] = $lomo_sobrecubierta; + $return_data['info'] = $info; + $return_data['info']['interior'] = $interior; + $return_data['info']['cubierta'] = $cubierta; + $return_data['info']['sobrecubierta'] = $linea_sobrecubierta; + $return_data['info']['guardas'] = $guardas; + $return_data['info']['serviciosDefecto'] = $servDefecto; + $return_data['info']['servicios_automaticos'] = $serviciosAutomaticos; + } } - $return_data = [ + $return_data += [ 'errors' => $error, 'total_lp' => $costeInterior + $coste_cubierta + $coste_sobrecubierta, 'acabadoCubierta' => $acabadoCubierta, @@ -1553,23 +1567,12 @@ class Presupuestocliente extends \App\Controllers\BaseResourceController 'tiradas' => $tirada, 'precio_u' => $precio_u, 'peso' => $peso, - 'lomo_cubierta' => $lomo, - 'lomo_sobrecubierta'=> $lomo_sobrecubierta, ]; if($extra_info){ - $info['lomo_cubierta'] = $lomo; - $info['lomo_sobrecubierta'] = $lomo_sobrecubierta; - $return_data['info'] = $info; - $return_data['info']['interior'] = $interior; - $return_data['info']['cubierta'] = $cubierta; - $return_data['info']['sobrecubierta'] = $linea_sobrecubierta; - $return_data['info']['guardas'] = $guardas; - $return_data['info']['serviciosDefecto'] = $servDefecto; - $return_data['info']['servicios_automaticos'] = $serviciosAutomaticos; - - $return_data['totales'] = $totales; + $return_data['info']['totales'] = $totales; } + return $return_data; } catch (Exception $e) { diff --git a/ci4/app/Services/PresupuestoService.php b/ci4/app/Services/PresupuestoService.php index d428cb4f..12b0785e 100755 --- a/ci4/app/Services/PresupuestoService.php +++ b/ci4/app/Services/PresupuestoService.php @@ -1138,7 +1138,7 @@ class PresupuestoService extends BaseService else{ $nueva_linea = PresupuestoService::obtenerValorLineaPresupuesto($data, $linea); if(count($nueva_linea) >0){ - if(round($nueva_linea['fields']['total_impresion'],2) != $linea->total_linea){ + if(round($nueva_linea['fields']['total_impresion'],2) != round($linea->total_linea, 2)){ (new PresupuestoLineaModel())->updatePreciosLineasPresupuesto($linea->id, $nueva_linea); $linea_to_save = (new PresupuestoLineaModel())->find($linea->id); $cambios = true; @@ -1355,7 +1355,7 @@ class PresupuestoService extends BaseService $nueva_tarifa = $model->getPrecioTarifa($servicio->tarifa_acabado_id, $input_data['tirada'], $input_data['POD']); if($nueva_tarifa && count($nueva_tarifa)>0){ - if(round($nueva_tarifa[0]->precio_unidad, 2) != $servicio->precio_unidad || + if(round($nueva_tarifa[0]->precio_unidad, 2) != round($servicio->precio_unidad,2) || $nueva_tarifa[0]->margen != $servicio->margen){ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2); @@ -1386,7 +1386,7 @@ class PresupuestoService extends BaseService $count = 0; $nueva_tarifa = $model->getPrecioTarifa($servicio->tarifa_manipulado_id, $input_data['tirada'], $input_data['POD']); if($nueva_tarifa && count($nueva_tarifa)>0){ - if(round($nueva_tarifa[0]->precio_unidad, 2) != $servicio->precio_unidad || + if(round($nueva_tarifa[0]->precio_unidad, 2) != round($servicio->precio_unidad,2) || $nueva_tarifa[0]->margen != $servicio->margen){ $servicio->precio_unidad = round($nueva_tarifa[0]->precio_unidad, 2); @@ -1468,12 +1468,16 @@ 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) != floatval($servicio->precio_unidad) || + if($nueva_tarifa[0]->tiempo==null) + $nueva_tarifa[0]->tiempo = 0; + if($servicio->tiempo == null) + $servicio->tiempo = 0; + if(round($nueva_tarifa[0]->precio_unidad, 2) != round(floatval($servicio->precio_unidad),2) || $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); + $servicio->tiempo = $nueva_tarifa[0]->tiempo==null?0: round($nueva_tarifa[0]->tiempo, 2); $servicio->precio_total = round($nueva_tarifa[0]->total, 2); $servicio->margen = round($nueva_tarifa[0]->margen); $cambio = true; diff --git a/ci4/app/Views/themes/vuexy/main/menu_impresion.php b/ci4/app/Views/themes/vuexy/main/menu_impresion.php index 046c88ff..ca896b1e 100644 --- a/ci4/app/Views/themes/vuexy/main/menu_impresion.php +++ b/ci4/app/Views/themes/vuexy/main/menu_impresion.php @@ -55,14 +55,25 @@ */ if (auth()->user()->inGroup('beta')) { ?> - diff --git a/xdebug.log b/xdebug.log index 4a16f413..e5d220b6 100644 --- a/xdebug.log +++ b/xdebug.log @@ -606596,3 +606596,12678 @@ Stack trace: [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 +[22] Log opened at 2024-05-18 08:31:23.827440 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:31:25.776876 + +[22] Log opened at 2024-05-18 08:31:25.802355 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:31:26.486359 + +[22] Log opened at 2024-05-18 08:31:26.697853 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:31:26.870719 + +[26] Log opened at 2024-05-18 08:31:27.424363 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:31:28.089746 + +[26] Log opened at 2024-05-18 08:31:29.205855 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:31:30.457664 + +[25] Log opened at 2024-05-18 08:31:30.650938 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:31:30.952636 + +[31] Log opened at 2024-05-18 08:41:30.123880 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:41:31.077778 + +[32] Log opened at 2024-05-18 08:41:36.214572 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:41:36.564993 + +[32] Log opened at 2024-05-18 08:41:36.741920 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:41:37.012411 + +[33] Log opened at 2024-05-18 08:41:37.210632 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:41:37.537861 + +[33] Log opened at 2024-05-18 08:41:39.055086 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:41:40.006992 + +[33] Log opened at 2024-05-18 08:41:40.255806 +[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. +[32] Log opened at 2024-05-18 08:41:40.260655 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[26] Log opened at 2024-05-18 08:41:40.260652 +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[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. +[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. +[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. +[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. +[34] Log opened at 2024-05-18 08:41:40.261283 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [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-18 08:41:40.262570 +[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. +[23] Log opened at 2024-05-18 08:41:40.262875 +[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', getaddrinfo: Invalid argument. +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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. +[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. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[33] Log closed at 2024-05-18 08:41:53.510747 + +[32] Log closed at 2024-05-18 08:41:53.511423 + +[33] Log opened at 2024-05-18 08:41:53.513744 +[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. +[32] Log opened at 2024-05-18 08:41:53.513988 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[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. +[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', getaddrinfo: Invalid argument. +[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] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:41:53.568472 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [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. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[34] Log closed at 2024-05-18 08:41:53.721100 + +[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. +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:41:53.770898 + +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:41:53.848540 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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] [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. +[32] Log closed at 2024-05-18 08:41:53.924106 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:41:53.979931 + +[26] Log opened at 2024-05-18 08:41:54.049902 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:41:54.460542 + +[24] Log opened at 2024-05-18 08:42:07.575369 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:07.913274 + +[24] Log opened at 2024-05-18 08:42:09.215758 +[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', getaddrinfo: Invalid argument. +[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). +[25] Log opened at 2024-05-18 08:42:09.447230 +[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. +[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', getaddrinfo: Invalid argument. +[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). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[31] Log opened at 2024-05-18 08:42:09.535667 +[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. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] Log closed at 2024-05-18 08:42:09.570573 + +[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. +[35] Log opened at 2024-05-18 08:42:09.702771 +[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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[35] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:42:09.779502 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:09.858412 + +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:10.035965 + +[35] Log opened at 2024-05-18 08:42:11.324406 +[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', getaddrinfo: Invalid argument. +[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). +[34] Log opened at 2024-05-18 08:42:11.500020 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [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: 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. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:11.661821 + +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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). +[34] Log closed at 2024-05-18 08:42:11.879139 + +[34] Log opened at 2024-05-18 08:42:12.857012 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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). +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[34] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[34] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[34] [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). +[34] Log closed at 2024-05-18 08:42:13.187517 + +[23] Log opened at 2024-05-18 08:42:13.252439 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:13.590603 + +[22] Log opened at 2024-05-18 08:42:13.603900 +[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', getaddrinfo: Invalid argument. +[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). +[32] Log opened at 2024-05-18 08:42:13.679637 +[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', getaddrinfo: Invalid argument. +[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). +[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', getaddrinfo: Invalid argument. +[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. +[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. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:42:13.945036 + +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:14.030325 + +[33] Log opened at 2024-05-18 08:42:23.229012 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:23.540489 + +[33] Log opened at 2024-05-18 08:42:27.673342 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:28.019516 + +[33] Log opened at 2024-05-18 08:42:29.508086 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:30.434189 + +[33] Log opened at 2024-05-18 08:42:31.198095 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:31.540183 + +[26] Log opened at 2024-05-18 08:42:36.837822 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:37.157657 + +[24] Log opened at 2024-05-18 08:42:45.700760 +[25] Log opened at 2024-05-18 08:42:45.700947 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[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'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[25] [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. +[25] [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). +[25] [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. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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'. +[24] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[25] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[24] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[25] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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). +[25] [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. +[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', getaddrinfo: Invalid argument. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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-18 08:42:45.962938 + +[25] Log closed at 2024-05-18 08:42:45.963164 + +[24] Log opened at 2024-05-18 08:42:46.024502 +[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. +[25] Log opened at 2024-05-18 08:42:46.024843 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[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. +[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', getaddrinfo: Invalid argument. +[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). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[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. +[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. +[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. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] Log closed at 2024-05-18 08:42:46.312813 + +[25] Log closed at 2024-05-18 08:42:46.312858 + +[31] Log opened at 2024-05-18 08:42:47.106874 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:47.909281 + +[35] Log opened at 2024-05-18 08:42:56.572587 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:56.953259 + +[35] Log opened at 2024-05-18 08:42:57.038773 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:57.267564 + +[22] Log opened at 2024-05-18 08:42:57.857287 +[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', getaddrinfo: Invalid argument. +[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. +[23] Log opened at 2024-05-18 08:42:58.105019 +[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', getaddrinfo: Invalid argument. +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:58.216212 + +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:42:58.424642 + +[32] Log opened at 2024-05-18 08:43:04.781244 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:05.141258 + +[32] Log opened at 2024-05-18 08:43:08.293135 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:09.697966 + +[32] Log opened at 2024-05-18 08:43:09.884097 +[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. +[33] Log opened at 2024-05-18 08:43:09.890391 +[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. +[26] Log opened at 2024-05-18 08:43:09.891735 +[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. +[24] Log opened at 2024-05-18 08:43:09.892351 +[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. +[25] Log opened at 2024-05-18 08:43:09.892706 +[24] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[24] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-05-18 08:43:09.892782 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[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. +[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. +[25] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[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. +[25] [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', getaddrinfo: Invalid argument. +[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] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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', getaddrinfo: Invalid argument. +[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. +[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. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[32] Log closed at 2024-05-18 08:43:10.114193 + +[32] Log opened at 2024-05-18 08:43:10.116505 +[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. +[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. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[24] Log closed at 2024-05-18 08:43:10.170945 + +[24] Log opened at 2024-05-18 08:43:10.172927 +[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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:43:10.259337 + +[25] Log opened at 2024-05-18 08:43:10.261240 +[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. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:43:10.337373 + +[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. +[31] Log opened at 2024-05-18 08:43:10.339886 +[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. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[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', getaddrinfo: Invalid argument. +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[33] Log closed at 2024-05-18 08:43:10.449423 + +[33] Log opened at 2024-05-18 08:43:10.451349 +[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. +[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', getaddrinfo: Invalid argument. +[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). +[26] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[26] Log closed at 2024-05-18 08:43:10.501981 + +[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. +[32] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:43:10.554486 + +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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', getaddrinfo: Invalid argument. +[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). +[24] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[24] Log closed at 2024-05-18 08:43:10.642770 + +[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. +[25] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:43:10.694491 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[31] Log closed at 2024-05-18 08:43:10.785481 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 08:43:10.848664 + +[25] Log opened at 2024-05-18 08:43:10.982601 +[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', getaddrinfo: Invalid argument. +[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). +[33] Log opened at 2024-05-18 08:43:11.139061 +[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. +[24] Log opened at 2024-05-18 08:43:11.159062 +[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', getaddrinfo: Invalid argument. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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). +[26] Log opened at 2024-05-18 08:43:11.297253 +[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', getaddrinfo: Invalid argument. +[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). +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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). +[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. +[25] Log closed at 2024-05-18 08:43:11.529102 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:11.637360 + +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:11.795215 + +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:11.910966 + +[22] Log opened at 2024-05-18 08:43:39.122339 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:39.512803 + +[22] Log opened at 2024-05-18 08:43:40.108840 +[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', getaddrinfo: Invalid argument. +[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. +[23] Log opened at 2024-05-18 08:43:40.365956 +[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', getaddrinfo: Invalid argument. +[22] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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] 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', getaddrinfo: Invalid argument. +[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-18 08:43:40.479437 + +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 08:43:40.671445 + +[36] Log opened at 2024-05-18 08:43:55.743031 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 992 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 9 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 10 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 11 -n "$data[0]['pais_id']" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 12 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 13 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 15 -d 0 -c 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 16 -d 0 -c 2 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_remove -i 17 -d 360001 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 18 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:44:03.192851 + +[32] Log opened at 2024-05-18 08:44:26.727370 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 9 +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 10 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 11 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 12 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 13 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 15 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 16 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 17 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 18 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 19 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 20 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 21 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 23 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 24 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 25 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:44:31.328278 + +[32] Log opened at 2024-05-18 08:44:31.574583 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] Log opened at 2024-05-18 08:44:31.575029 +[32] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] Log opened at 2024-05-18 08:44:31.575256 +[25] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.25' +[31] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [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] -> + +[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] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[33] Log opened at 2024-05-18 08:44:31.582333 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[24] Log opened at 2024-05-18 08:44:31.582937 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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. +[33] [Step Debug] -> + +[26] Log opened at 2024-05-18 08:44:31.582923 +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.26' +[24] [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. +[26] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[26] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[25] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[25] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[33] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[33] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[24] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[24] [Step Debug] -> + +[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] -> + +[33] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[33] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[26] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[26] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[26] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[31] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[25] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[25] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[26] [Step Debug] -> + +[24] [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] -> + +[32] [Step Debug] <- run -i 9 +[31] [Step Debug] <- run -i 9 +[25] [Step Debug] <- run -i 9 +[33] [Step Debug] <- run -i 9 +[24] [Step Debug] <- run -i 9 +[26] [Step Debug] <- run -i 9 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:44:31.889531 + +[32] Log opened at 2024-05-18 08:44:31.892433 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[25] [Step Debug] -> + +[25] Log closed at 2024-05-18 08:44:31.912782 + +[25] Log opened at 2024-05-18 08:44:31.914698 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[26] [Step Debug] -> + +[26] Log closed at 2024-05-18 08:44:31.935644 + +[26] Log opened at 2024-05-18 08:44:31.937655 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[32] [Step Debug] <- run -i 9 +[25] [Step Debug] <- run -i 5 +[26] [Step Debug] <- run -i 5 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 08:44:31.962848 + +[33] Log opened at 2024-05-18 08:44:31.965121 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 08:44:31.985106 + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[33] [Step Debug] -> + +[24] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[24] Log closed at 2024-05-18 08:44:32.008690 + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:44:32.085083 + +[26] [Step Debug] -> + +[26] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[26] [Step Debug] -> + +[26] Log closed at 2024-05-18 08:44:32.104223 + +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[25] [Step Debug] -> + +[25] Log closed at 2024-05-18 08:44:32.144233 + +[32] Log opened at 2024-05-18 08:44:35.999539 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[25] Log opened at 2024-05-18 08:44:36.008790 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[25] [Step Debug] -> + +[25] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[25] [Step Debug] -> + +[33] [Step Debug] <- run -i 9 +[32] [Step Debug] <- run -i 9 +[25] [Step Debug] <- run -i 5 +[25] [Step Debug] -> + +[25] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[25] [Step Debug] -> + +[25] Log closed at 2024-05-18 08:44:36.379823 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 10 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 11 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 12 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 13 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 15 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 16 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 17 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 18 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 19 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 20 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 21 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 23 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 24 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 25 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 26 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 27 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 28 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 29 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 30 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 31 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 32 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 33 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 34 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 35 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 36 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 37 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 38 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 40 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 41 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 42 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 43 -n "$linea->total_linea" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 44 -n "$data[0]['pais_id']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 45 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 46 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 48 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 49 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 50 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 51 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 52 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 53 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 54 -n "$input_data['datosPedido']['paginas']" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 56 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 57 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 58 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 59 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 60 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 61 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 62 -n "$linea->total_linea" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 64 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 65 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 66 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 67 -n "$nueva_linea" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 68 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 69 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 70 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 71 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 72 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 73 -n "$linea->total_linea" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 75 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 76 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 77 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 78 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 79 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 81 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 82 -n "$linea->total_linea" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 83 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 84 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 85 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 86 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 87 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- step_over -i 88 +[32] [Step Debug] -> + +[32] [Step Debug] <- stack_get -i 89 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_names -i 90 -d 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- eval -i 91 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 92 -n "$DEVSENSE_EVAL_CACHE['8dd14823b34bf3a9bd7c01d0c01c801abd7c00502f3a7fbf3b067969a1fa8ccc']" -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 93 -n "$linea->total_linea" -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 95 -d 0 -c 1 +[32] [Step Debug] -> + +[32] [Step Debug] <- context_get -i 96 -d 0 -c 2 +[32] [Step Debug] -> + +[32] [Step Debug] <- property_get -i 97 -n "$nueva_linea[\"fields\"]" -p 0 -d 0 -c 0 +[32] [Step Debug] -> + +[32] [Step Debug] <- run -i 98 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:47:24.820444 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 08:47:24.843551 + +[32] Log opened at 2024-05-18 08:47:25.042997 +[32] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.32' +[22] Log opened at 2024-05-18 08:47:25.043229 +[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'. +[32] [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'. +[32] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[22] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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. +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[32] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [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] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[23] Log opened at 2024-05-18 08:47:25.046125 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[32] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[32] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[36] Log opened at 2024-05-18 08:47:25.054219 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[37] Log opened at 2024-05-18 08:47:25.056444 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[31] Log opened at 2024-05-18 08:47:25.057196 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[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. +[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. +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[37] [Step Debug] -> + +[31] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[36] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[37] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[31] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[31] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[36] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[37] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 7 -n notify_ok -v 1 +[31] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[22] [Step Debug] <- run -i 9 +[32] [Step Debug] <- run -i 9 +[23] [Step Debug] <- run -i 9 +[36] [Step Debug] <- run -i 9 +[37] [Step Debug] <- run -i 9 +[31] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 08:47:25.150974 + +[23] Log opened at 2024-05-18 08:47:25.153989 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 5 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:47:25.331539 + +[32] Log opened at 2024-05-18 08:47:25.334175 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:47:25.358660 + +[36] Log opened at 2024-05-18 08:47:25.361781 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 08:47:25.382976 + +[31] Log opened at 2024-05-18 08:47:25.385152 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 08:47:25.408706 + +[32] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[32] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[36] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[22] Log opened at 2024-05-18 08:47:25.411762 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 08:47:25.437038 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 08:47:25.466137 + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[32] [Step Debug] <- run -i 9 +[36] [Step Debug] <- run -i 9 +[31] [Step Debug] <- run -i 9 +[22] [Step Debug] <- run -i 9 +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 08:47:25.648087 + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 08:47:25.669591 + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:47:25.688740 + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:47:25.714133 + +[36] Log opened at 2024-05-18 08:47:25.836674 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 9 +[22] Log opened at 2024-05-18 08:47:25.951142 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[23] Log opened at 2024-05-18 08:47:25.977198 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[22] [Step Debug] <- run -i 9 +[23] [Step Debug] <- run -i 5 +[31] Log opened at 2024-05-18 08:47:26.090178 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[22] [Step Debug] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:47:26.217568 + +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 08:47:26.266888 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 08:47:26.376101 + +[31] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[31] [Step Debug] -> + +[24] Log opened at 2024-05-18 08:48:34.055132 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 18 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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] -> + +[31] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 08:48:34.305881 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 11 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 12 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 13 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[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] <- context_get -i 16 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 17 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 18 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 19 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 20 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 21 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 22 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 24 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 25 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 26 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 27 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 28 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 29 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 30 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 32 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 33 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 34 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 35 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 36 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 37 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 38 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 40 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 41 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 42 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 43 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 44 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 45 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 46 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 48 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 49 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 50 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 51 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 52 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 53 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 54 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 55 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 56 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 57 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 58 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 59 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 60 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 61 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 62 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 64 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 65 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 66 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 67 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 68 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 69 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 70 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 71 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 72 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 73 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 74 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 75 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 76 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 77 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 78 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 79 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 80 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 81 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 82 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 83 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 84 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 85 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 86 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 87 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 88 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 89 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 90 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 91 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 92 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 94 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 95 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 96 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 97 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 98 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 99 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 100 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 101 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 102 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 103 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 104 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 105 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 106 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 107 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 108 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 109 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 110 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 111 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 112 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 113 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 114 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 115 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 116 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 117 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 118 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 120 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 121 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 122 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 123 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 124 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 125 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 126 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 127 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 128 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 129 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 130 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 131 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 132 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 133 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 134 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 135 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 136 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 137 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 138 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 139 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 140 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 141 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 142 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 143 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 144 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 145 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 146 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 147 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 08:50:34.990589 + +[24] Log opened at 2024-05-18 08:50:38.914507 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 18 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 11 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 12 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 13 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 14 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 15 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 17 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 18 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 19 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 20 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 21 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 22 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 23 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 25 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 26 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 27 -n "$linea_negro_plana[0]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 28 -n "$linea_negro_plana[0][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 29 -n "$linea_negro_plana[1]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 30 -n "$linea_negro_plana[1][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 31 -n "$linea_negro_plana[2]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 32 -n "$linea_negro_plana[2][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 33 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 34 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 35 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 36 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 37 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 39 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 40 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 41 -n "$linea_negro_plana[0]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 42 -n "$linea_negro_plana[1]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 43 -n "$linea_negro_plana[2]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 44 -n "$linea_negro_plana[0][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 45 -n "$linea_negro_plana[1][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 46 -n "$linea_negro_plana[2][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 47 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 48 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 49 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 50 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 51 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 53 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 54 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 55 -n "$linea_negro_plana[0]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 56 -n "$linea_negro_plana[1]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 57 -n "$linea_negro_plana[2]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 58 -n "$linea_negro_plana[0][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 59 -n "$linea_negro_plana[1][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 60 -n "$linea_negro_plana[2][\"fields\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 61 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 62 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 63 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 64 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 65 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 66 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 67 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 68 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 69 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 70 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 71 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 72 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 73 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 74 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 75 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 76 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 77 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 78 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 79 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 80 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 81 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 82 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 83 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 84 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 85 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 86 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 87 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 88 -n "$linea->total_linea" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 89 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 90 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 91 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 92 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- eval -i 93 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnOGRkMTQ4MjNiMzRiZjNhOWJkN2MwMWQwYzAxYzgwMWFiZDdjMDA1MDJmM2E3ZmJmM2IwNjc5NjlhMWZhOGNjYyddPXJvdW5kKCRudWV2YV9saW5lYVsnZmllbGRzJ11bJ3RvdGFsX2ltcHJlc2lvbiddLDIp +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 94 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 95 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 96 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 97 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 98 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 99 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 100 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 101 -n "$data[\"papel_generico\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 102 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 103 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 104 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 105 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 106 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 107 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 108 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 109 -n "$data[\"papel_generico\"]" -p 0 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 110 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 111 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 08:53:05.435002 + +[37] Log opened at 2024-05-18 08:53:34.128599 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 18 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 11 +[37] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 12 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 14 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 16 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 17 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 18 -n "$data['solapas_ancho_sobrecubierta']" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 19 -n "$input_data['presupuesto']" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- step_over -i 20 +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 21 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 23 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 25 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 26 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- eval -i 27 -- JEdMT0JBTFNbJ0RFVlNFTlNFX0VWQUxfQ0FDSEUnXVsnNWExZDE2NTgxNTYyYjE2MWZiZDJmNTkwZGRmYjBlYzA5MGViMjdhOGJlYzZmOThjYTczZmU1Y2RlMTk0ZjhhNCddPShuZXcgUHJlc3VwdWVzdG9MaW5lYU1vZGVsKCkpLT51cGRhdGVQcmVjaW9zTGluZWFzUHJlc3VwdWVzdG8= +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 28 +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 29 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 30 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 32 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 33 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 34 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- step_over -i 35 +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 36 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 37 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 38 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 39 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 40 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 41 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- step_over -i 42 +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 43 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 44 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 45 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 47 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 48 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- step_over -i 49 +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 50 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 51 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 52 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 53 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 54 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 55 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- step_over -i 56 +[37] [Step Debug] -> + +[37] [Step Debug] <- stack_get -i 57 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_names -i 58 -d 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- property_get -i 59 -n "$data" -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 61 -d 0 -c 1 +[37] [Step Debug] -> + +[37] [Step Debug] <- context_get -i 62 -d 0 -c 2 +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 63 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 08:59:28.074516 + +[37] Log opened at 2024-05-18 08:59:28.253530 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 18 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[32] Log opened at 2024-05-18 08:59:28.284367 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[32] [Step Debug] -> + +[36] Log opened at 2024-05-18 08:59:28.285076 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [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] -> + +[22] Log opened at 2024-05-18 08:59:28.286204 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[32] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[32] [Step Debug] -> + +[23] Log opened at 2024-05-18 08:59:28.287370 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[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. +[32] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[32] [Step Debug] -> + +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[31] Log opened at 2024-05-18 08:59:28.288090 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [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] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [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] -> + +[37] [Step Debug] <- run -i 11 +[32] [Step Debug] <- run -i 5 +[36] [Step Debug] <- run -i 5 +[22] [Step Debug] <- run -i 5 +[23] [Step Debug] <- run -i 5 +[31] [Step Debug] <- run -i 5 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 08:59:28.416816 + +[37] Log opened at 2024-05-18 08:59:28.420195 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:59:28.520697 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[36] Log opened at 2024-05-18 08:59:28.523047 +[23] [Step Debug] -> + +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[23] Log closed at 2024-05-18 08:59:28.524244 + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[23] Log opened at 2024-05-18 08:59:28.526396 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[37] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[36] [Step Debug] -> + +[37] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[36] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[36] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 12 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:59:28.624747 + +[32] Log opened at 2024-05-18 08:59:28.627778 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 08:59:28.660135 + +[22] Log opened at 2024-05-18 08:59:28.662906 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[32] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[32] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[22] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 08:59:28.682302 + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[37] [Step Debug] <- run -i 13 +[36] [Step Debug] <- run -i 13 +[23] [Step Debug] <- run -i 13 +[32] [Step Debug] <- run -i 11 +[22] [Step Debug] <- run -i 11 +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 08:59:28.908772 + +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 08:59:28.950431 + +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 08:59:28.975445 + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:59:29.008594 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 08:59:29.030181 + +[23] Log opened at 2024-05-18 08:59:29.271962 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 11 +[22] Log opened at 2024-05-18 08:59:29.426133 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[36] Log opened at 2024-05-18 08:59:29.452125 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[22] [Step Debug] <- run -i 11 +[36] [Step Debug] <- run -i 5 +[32] Log opened at 2024-05-18 08:59:29.637064 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 18 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[32] [Step Debug] -> + +[32] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[32] [Step Debug] -> + +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 08:59:29.723702 + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 08:59:29.792084 + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 08:59:29.861695 + +[24] Log opened at 2024-05-18 08:59:53.009752 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 18 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[32] [Step Debug] <- run -i 11 +[24] [Step Debug] <- run -i 11 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 12 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[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] <- context_get -i 16 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 17 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 18 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 19 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 21 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 23 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 24 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 25 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 26 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 27 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 28 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 29 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 30 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 31 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 32 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 33 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 34 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 35 -n "$data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 37 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 38 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 39 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:00:00.456899 + +[32] [Step Debug] -> + +[32] [Step Debug] -> + +[32] Log closed at 2024-05-18 09:00:00.538865 + +[34] Log opened at 2024-05-18 09:02:44.556919 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 18 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- stack_get -i 12 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_names -i 13 -d 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 14 -n "$data" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 16 -d 0 -c 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 17 -d 0 -c 2 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 18 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- step_over -i 19 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- stack_get -i 20 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_names -i 21 -d 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 22 -n "$data" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 24 -d 0 -c 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 25 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 26 -d 0 -c 2 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 27 +[34] [Step Debug] -> + +[34] [Step Debug] <- stack_get -i 28 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_names -i 29 -d 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 30 -n "$data" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 32 -d 0 -c 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 33 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 34 -d 0 -c 2 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_remove -i 35 -d 340001 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 36 +[34] [Step Debug] -> + +[34] [Step Debug] <- stack_get -i 37 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_names -i 38 -d 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 39 -n "$data" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 41 -d 0 -c 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- context_get -i 42 -d 0 -c 2 +[34] [Step Debug] -> + +[34] [Step Debug] <- property_get -i 43 -n "$data[\"datosPedido\"]" -d 0 -c 0 +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 44 +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:03:08.842662 + +[31] Log opened at 2024-05-18 09:04:39.613909 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 272 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 10 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 11 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 12 -n "$data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 13 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 15 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 16 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 17 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 18 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 19 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 20 -n "$data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 21 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 22 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 23 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 24 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:04:43.941116 + +[37] Log opened at 2024-05-18 09:04:44.149211 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 272 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[31] Log opened at 2024-05-18 09:04:44.158761 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[23] Log opened at 2024-05-18 09:04:44.159842 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[36] Log opened at 2024-05-18 09:04:44.160345 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [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] -> + +[22] Log opened at 2024-05-18 09:04:44.160892 +[22] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.22' +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[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. +[24] Log opened at 2024-05-18 09:04:44.161303 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[22] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[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. +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[24] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [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] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[37] [Step Debug] <- run -i 10 +[31] [Step Debug] <- run -i 5 +[23] [Step Debug] <- run -i 5 +[36] [Step Debug] <- run -i 5 +[22] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:04:44.295450 + +[37] Log opened at 2024-05-18 09:04:44.298439 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:04:44.377394 + +[23] Log opened at 2024-05-18 09:04:44.379708 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[37] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:04:44.404726 + +[24] Log opened at 2024-05-18 09:04:44.409870 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:04:44.467391 + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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" +[31] Log opened at 2024-05-18 09:04:44.469498 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 272 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:04:44.496682 + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[36] Log opened at 2024-05-18 09:04:44.499255 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 09:04:44.524244 + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[37] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[31] [Step Debug] <- run -i 10 +[36] [Step Debug] <- run -i 10 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:04:44.741356 + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:04:44.765188 + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:04:44.784018 + +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:04:44.807595 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:04:44.838833 + +[24] Log opened at 2024-05-18 09:04:44.928835 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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 +[36] Log opened at 2024-05-18 09:04:45.065107 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[23] Log opened at 2024-05-18 09:04:45.090811 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[36] [Step Debug] <- run -i 10 +[23] [Step Debug] <- run -i 5 +[37] Log opened at 2024-05-18 09:04:45.218005 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoClienteService.php -n 272 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:04:45.420240 + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:04:45.487788 + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:04:45.550565 + +[24] Log opened at 2024-05-18 09:04:49.012938 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 272 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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] -> + +[37] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[37] [Step Debug] -> + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:04:49.235473 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:04:49.261072 + +[34] Log opened at 2024-05-18 09:05:03.714483 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 10 +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:05:03.905934 + +[38] Log opened at 2024-05-18 09:05:59.092013 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/PresupuestoClienteService.php -n 272 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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] Log closed at 2024-05-18 09:05:59.320145 + +[39] Log opened at 2024-05-18 09:09:28.247045 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoClienteService.php -n 272 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 11 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 12 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 13 -n "$data" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 14 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 16 -d 0 -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 17 -d 0 -c 2 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_remove -i 18 -d 390002 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 19 +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 20 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 21 -n "$data" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 22 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 24 -n "$resultado_presupuesto" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 25 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 27 -n "$resultado_presupuesto[\"tiradas\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 28 -n "$resultado_presupuesto[\"totales\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 29 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- property_get -i 30 -n "$resultado_presupuesto" -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 31 -d 0 -c 1 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 32 -d 0 -c 2 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 33 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:11:12.791989 + +[22] Log opened at 2024-05-18 09:18:58.606623 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 11 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 12 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 13 -n "$resultado_presupuesto" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 14 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 16 -n "$resultado_presupuesto" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 17 -n "$resultado_presupuesto" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 18 -n "$selected_tirada" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 19 -n "$coste_total" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 20 -n "$resultado_presupuesto" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 21 -n "$selected_tirada" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 22 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 23 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 24 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 25 -n "$resultado_presupuesto" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 27 +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 09:19:49.805386 + +[31] Log opened at 2024-05-18 09:19:55.621881 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 891 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 11 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:19:55.875424 + +[31] Log opened at 2024-05-18 09:19:58.300147 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 891 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 11 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 12 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 13 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 14 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 16 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 17 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 18 -n "$resultado_presupuesto" -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] <- step_over -i 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 22 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$resultado_presupuesto" -d 0 -c 0 +[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] <- 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 "$resultado_presupuesto" -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] <- property_get -i 31 -n "$resumen_totales['totalServicios']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 32 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 33 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 34 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 35 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 37 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 38 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 39 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:20:28.978877 + +[23] Log opened at 2024-05-18 09:20:42.944505 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 11 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 12 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 13 -n "$resultado_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 14 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 16 -n "$resumen_totales" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 17 -n "$resultado_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 18 -d 0 -c 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 19 -d 0 -c 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 20 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 21 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:21:55.787945 + +[36] Log opened at 2024-05-18 09:21:58.349905 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 11 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 12 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 13 -n "$resultado_presupuesto" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 14 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 16 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 17 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 18 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- step_over -i 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 21 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 22 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 23 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 24 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 25 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 26 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 27 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 28 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:22:12.167461 + +[34] Log opened at 2024-05-18 09:26:34.061299 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:26:34.865114 + +[34] Log opened at 2024-05-18 09:26:39.660671 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 891 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:26:39.892836 + +[33] Log opened at 2024-05-18 09:26:49.647807 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 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 919 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 11 +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- stack_get -i 12 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_names -i 13 -d 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 15 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:26:53.392867 + +[38] Log opened at 2024-05-18 09:28:21.730335 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 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 919 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 11 +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] -> + +[38] [Step Debug] <- stack_get -i 12 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_names -i 13 -d 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_remove -i 15 -d 380006 +[38] [Step Debug] -> + +[38] [Step Debug] <- run -i 16 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:28:25.428288 + +[39] Log opened at 2024-05-18 09:28:39.758139 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 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 919 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 11 +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- stack_get -i 12 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 13 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 15 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 17 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_names -i 19 -d 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- context_get -i 20 -d 0 -c 0 +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 21 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:29:33.081839 + +[24] Log opened at 2024-05-18 09:29:39.049682 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 889 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 11 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 12 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 13 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 15 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 16 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 17 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 19 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:29:46.225374 + +[22] Log opened at 2024-05-18 09:29:54.093977 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 889 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 11 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 12 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 13 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 15 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 16 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 17 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 18 -n "$resultado_presupuesto['totales'][0]" -p 0 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 19 -n "$resultado_presupuesto['totales'][1]" -p 0 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 20 -n "$i" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 21 -d 0 -c 1 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 22 -d 0 -c 2 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 23 -n "$totales" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 24 -n "$totales" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 25 -n "$totales" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- breakpoint_set -i 26 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1529 +[22] [Step Debug] -> + +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 27 +[22] [Step Debug] -> + +[22] [Step Debug] <- stack_get -i 28 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 29 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_names -i 30 -d 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 32 -n "$resultado_presupuesto['totales'][0]" -p 0 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- property_get -i 33 -n "$resultado_presupuesto['totales'][1]" -p 0 -d 0 -c 0 +[22] [Step Debug] -> + +[22] [Step Debug] <- run -i 34 +[22] [Step Debug] -> + +[22] Log closed at 2024-05-18 09:31:58.609236 + +[31] Log opened at 2024-05-18 09:32:01.924527 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1529 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 11 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 12 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 13 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 14 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 16 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 17 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 18 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 19 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 20 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 21 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 22 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 23 -n "$totales" -d 0 -c 0 +[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_get -i 26 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 27 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 28 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1573 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 29 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 30 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 31 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 32 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 33 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 35 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 36 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 37 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 38 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 39 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 40 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 41 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 42 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 43 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 44 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 45 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 46 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 47 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 48 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 49 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 50 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 51 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 52 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 53 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 54 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 55 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 56 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 57 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 58 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 59 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 60 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 61 -d 0 -c 1 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 62 -d 0 -c 2 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 63 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 64 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 65 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 66 -n "$totales" -d 0 -c 0 +[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] <- property_get -i 69 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 70 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 71 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 72 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 73 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 74 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 75 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 76 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 77 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 78 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 79 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 80 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 81 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 82 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 83 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 84 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 85 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 86 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 87 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 88 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 89 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 90 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 91 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 92 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 93 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 94 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 95 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 96 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 97 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 98 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 99 -n "$return_data" -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 "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 102 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 103 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 104 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 105 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 106 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 107 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 108 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 109 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 110 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 111 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 112 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 113 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 114 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 115 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 116 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 117 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 118 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 119 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 120 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 121 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 122 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 123 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 124 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 125 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 126 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 127 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 128 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 129 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 130 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 131 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 132 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 133 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 134 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 135 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 136 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 137 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 138 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 139 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 140 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 141 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 142 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 143 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 144 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 145 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 146 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 147 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 148 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 149 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 150 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 151 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 152 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 153 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 154 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 155 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 156 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 157 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 158 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 159 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 160 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 161 -n "$resultado_presupuesto" -d 0 -c 0 +[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] <- property_get -i 164 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 165 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 166 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -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 "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 170 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 171 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 172 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 173 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 174 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 175 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 176 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- step_over -i 177 +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 178 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 179 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 180 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 181 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 182 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 183 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 184 -n "$resultado_presupuesto[\"info\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 185 -n "$resultado_presupuesto[\"info\"][\"totales\"]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 186 -n "$resultado_presupuesto[\"info\"][\"totales\"][0]" -p 0 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 187 -n "$resultado_presupuesto['totales']" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 188 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:33:34.028320 + +[23] Log opened at 2024-05-18 09:34:19.438848 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1529 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 1573 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 10 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 11 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 12 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 13 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 14 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 15 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 16 -n "$totales" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 17 -n "$resultado_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 18 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 19 -d 230029 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 20 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 21 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 22 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 23 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 24 -n "$totales" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 25 -n "$resultado_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 26 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 27 -d 0 -c 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 28 -d 0 -c 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 29 -d 230030 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 30 +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 31 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 32 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 33 -n "$totales" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 34 -n "$resultado_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 35 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 36 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 37 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:34:37.265917 + +[36] Log opened at 2024-05-18 09:34:52.587062 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 10 +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 11 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 12 -n "$return_data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 13 -n "$totales" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 14 -n "$resultado_presupuesto" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 15 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 17 -d 0 -c 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 18 -d 0 -c 2 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 19 +[36] [Step Debug] -> + +[36] [Step Debug] <- stack_get -i 20 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_names -i 21 -d 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 22 -n "$return_data" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 23 -n "$totales" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- property_get -i 24 -n "$resultado_presupuesto" -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 25 -d 0 -c 0 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 26 -d 0 -c 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- context_get -i 27 -d 0 -c 2 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 28 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:34:56.658611 + +[36] Log opened at 2024-05-18 09:34:56.864963 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] Log opened at 2024-05-18 09:34:56.864963 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[37] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[34] Log opened at 2024-05-18 09:34:56.866434 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[38] Log opened at 2024-05-18 09:34:56.866812 +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[37] [Step Debug] -> + +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] -> + +[33] Log opened at 2024-05-18 09:34:56.866942 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[39] Log opened at 2024-05-18 09:34:56.867215 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] -> + +[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. +[39] [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). +[39] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[39] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[33] [Step Debug] -> + +[39] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[39] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [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] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [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] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [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] -> + +[39] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[37] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[37] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[34] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[38] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[37] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[34] [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] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[36] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[38] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[39] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[33] [Step Debug] -> + +[39] [Step Debug] -> + +[36] [Step Debug] <- run -i 11 +[37] [Step Debug] <- run -i 11 +[34] [Step Debug] <- run -i 11 +[38] [Step Debug] <- run -i 11 +[33] [Step Debug] <- run -i 11 +[39] [Step Debug] <- run -i 11 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:34:57.131698 + +[36] Log opened at 2024-05-18 09:34:57.134654 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- run -i 5 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:34:57.158320 + +[38] Log opened at 2024-05-18 09:34:57.161435 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] <- run -i 5 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:34:57.225291 + +[37] Log opened at 2024-05-18 09:34:57.227755 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:34:57.255887 + +[33] Log opened at 2024-05-18 09:34:57.258576 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:34:57.289432 + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[33] [Step Debug] -> + +[34] Log opened at 2024-05-18 09:34:57.292728 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[33] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:34:57.322319 + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:34:57.343026 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:34:57.376611 + +[34] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 10 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[34] [Step Debug] -> + +[37] [Step Debug] <- run -i 10 +[33] [Step Debug] <- run -i 10 +[34] [Step Debug] <- run -i 11 +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:34:57.544400 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:34:57.636998 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:34:57.669600 + +[38] Log opened at 2024-05-18 09:34:58.079461 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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 +[33] Log opened at 2024-05-18 09:34:58.217873 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[39] Log opened at 2024-05-18 09:34:58.252858 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[33] [Step Debug] <- run -i 10 +[39] [Step Debug] <- run -i 5 +[37] Log opened at 2024-05-18 09:34:58.374351 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:34:58.575863 + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:34:58.640833 + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:34:58.707254 + +[24] Log opened at 2024-05-18 09:35:06.827677 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[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] -> + +[37] [Step Debug] <- run -i 10 +[24] [Step Debug] <- run -i 10 +[37] [Step Debug] -> + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:35:07.074863 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 11 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 12 -n "$return_data" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 13 -n "$totales" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 14 -n "$resultado_presupuesto" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 15 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 17 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:35:10.467405 + +[23] Log opened at 2024-05-18 09:50:21.238885 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1011 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 10 +[23] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- stack_get -i 11 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 12 -n "$return_data" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 13 -n "$totales" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- property_get -i 14 -n "$resultado_presupuesto" -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_names -i 15 -d 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 17 -d 0 -c 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- context_get -i 18 -d 0 -c 2 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_remove -i 19 -d 230036 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 20 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:50:28.066792 + +[23] Log opened at 2024-05-18 09:50:28.277292 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[36] Log opened at 2024-05-18 09:50:28.280660 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[34] Log opened at 2024-05-18 09:50:28.280889 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[38] Log opened at 2024-05-18 09:50:28.281017 +[36] [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' +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [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'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[38] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [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. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] -> + +[34] [Step Debug] -> + +[39] Log opened at 2024-05-18 09:50:28.281025 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [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] Log opened at 2024-05-18 09:50:28.282572 +[33] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.33' +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [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] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[38] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[39] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[23] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[38] [Step Debug] -> + +[34] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 4 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[39] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 1 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[33] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[39] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 2 -n max_children -v 100 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n max_data -v 8192 +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n notify_ok -v 1 +[33] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[36] [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" +[34] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[38] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 8 -n resolved_breakpoints -v 1 +[33] [Step Debug] -> + +[23] [Step Debug] <- run -i 9 +[36] [Step Debug] <- run -i 9 +[38] [Step Debug] <- run -i 9 +[34] [Step Debug] <- run -i 9 +[39] [Step Debug] <- run -i 9 +[33] [Step Debug] <- run -i 9 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:50:28.421692 + +[23] Log opened at 2024-05-18 09:50:28.425750 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 4 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:50:28.541390 + +[38] Log opened at 2024-05-18 09:50:28.543961 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:50:28.576839 + +[39] Log opened at 2024-05-18 09:50:28.579911 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[38] [Step Debug] <- run -i 5 +[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 919 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:50:28.659268 + +[36] Log opened at 2024-05-18 09:50:28.661738 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:50:28.689862 + +[33] Log opened at 2024-05-18 09:50:28.692287 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[33] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:50:28.726308 + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[36] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:50:28.749354 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:50:28.770734 + +[39] [Step Debug] <- run -i 9 +[36] [Step Debug] <- run -i 9 +[33] [Step Debug] <- run -i 9 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:50:28.946059 + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:50:28.986367 + +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:50:29.001395 + +[39] Log opened at 2024-05-18 09:50:29.174740 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[39] [Step Debug] <- run -i 9 +[33] Log opened at 2024-05-18 09:50:29.308047 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[38] Log opened at 2024-05-18 09:50:29.331649 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[33] [Step Debug] <- run -i 9 +[38] [Step Debug] <- run -i 5 +[36] Log opened at 2024-05-18 09:50:29.478141 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[36] [Step Debug] -> + +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:50:29.617754 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:50:29.662043 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Controllers/Presupuestos/Presupuestocliente.php -n 919 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:50:29.776844 + +[36] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[36] [Step Debug] -> + +[31] Log opened at 2024-05-18 09:52:55.113756 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 919 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 9 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[36] [Step Debug] <- run -i 10 +[31] [Step Debug] <- run -i 10 +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- stack_get -i 11 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 12 -n "$return_data" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 13 -n "$totales" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- property_get -i 14 -n "$resultado_presupuesto" -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_names -i 15 -d 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- context_get -i 16 -d 0 -c 0 +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_remove -i 17 -d 310047 +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 18 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:53:00.473276 + +[36] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- breakpoint_remove -i 11 -d 360057 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:53:00.543070 + +[41] Log opened at 2024-05-18 09:53:06.508589 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 9 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 10 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 11 -n "$return_data" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 12 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 13 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 14 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 15 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 16 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 17 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 18 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 19 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 20 -n "$return_data" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 21 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 22 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 23 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 24 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 25 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 26 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 27 -n "$return_data" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 28 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 29 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 30 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 31 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 32 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 33 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 34 -n "$return_data" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 35 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 36 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 37 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 38 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 39 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 40 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 41 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 42 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 43 -n "$return_data" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 44 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 45 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 46 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 47 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 48 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 49 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 50 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 51 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 52 -n "$return_data" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 53 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 54 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 55 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 56 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 57 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 58 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 59 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 60 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 61 -n "$totales" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 62 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 63 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 64 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 65 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 66 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 67 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 68 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 69 -n "$resultado_presupuesto" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 70 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 71 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 72 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 73 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 74 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 75 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 76 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 77 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 78 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 79 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 80 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 81 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 82 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 83 -n "$nueva_tarifa[0]->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 84 -n "$servicio->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 85 -n "$nueva_tarifa[0]->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 86 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 87 -n "$nueva_tarifa" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 88 -n "$servicio->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 89 -n "$nueva_tarifa" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 90 -n "$nueva_tarifa[0]->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 91 -n "$nueva_tarifa" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 92 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 93 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 94 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 95 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 96 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 97 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 98 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 99 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 100 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 101 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 102 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 103 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 104 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 105 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 106 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 107 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 108 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 109 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 110 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 111 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 112 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 113 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 114 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 115 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 116 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 117 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 118 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 119 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 120 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 121 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 122 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 123 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 124 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 125 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 126 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 127 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 128 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 129 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 130 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 131 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 132 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 133 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 134 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 135 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 136 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 137 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 138 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 139 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 140 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 141 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 142 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 143 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 144 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- step_over -i 145 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 146 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 147 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 148 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 149 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 150 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 151 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 152 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 153 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 154 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 155 -n "$servicio->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 156 -n "$nueva_tarifa[0]->margen" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 157 -n "$servicio->margen" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 158 -n "$servicio->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 159 -n "$nueva_tarifa[0]->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 160 -n "$servicio->precio_unidad" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 161 -n "$nueva_tarifa[0]->precio_unidad" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 162 -n "$nueva_tarifa[0]->precio_unidad" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 163 -n "$servicio->tiempo" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 164 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:57:59.631155 + +[41] Log opened at 2024-05-18 09:57:59.875149 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[33] Log opened at 2024-05-18 09:57:59.911117 +[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'. +[38] Log opened at 2024-05-18 09:57:59.911606 +[33] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[38] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.38' +[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. +[38] [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). +[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. +[33] [Step Debug] -> + +[37] Log opened at 2024-05-18 09:57:59.912037 +[37] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.37' +[38] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[38] [Step Debug] -> + +[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. +[24] Log opened at 2024-05-18 09:57:59.912212 +[24] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.24' +[37] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[37] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[24] [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] -> + +[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] -> + +[37] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[37] [Step Debug] -> + +[31] Log opened at 2024-05-18 09:57:59.913899 +[37] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[37] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[38] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[38] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [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] -> + +[37] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[37] [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] -> + +[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] -> + +[24] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[24] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[24] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[24] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[41] [Step Debug] <- run -i 9 +[33] [Step Debug] <- run -i 5 +[38] [Step Debug] <- run -i 5 +[37] [Step Debug] <- run -i 5 +[24] [Step Debug] <- run -i 5 +[31] [Step Debug] <- run -i 5 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:57:59.998382 + +[41] Log opened at 2024-05-18 09:58:00.001478 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[41] [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 1422 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:58:00.099024 + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[38] Log opened at 2024-05-18 09:58:00.102536 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:00.125060 + +[24] Log opened at 2024-05-18 09:58:00.127409 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:58:00.150064 + +[38] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[37] Log opened at 2024-05-18 09:58:00.153291 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[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] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[38] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[38] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[37] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:58:00.165323 + +[33] Log opened at 2024-05-18 09:58:00.168519 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:58:00.176487 + +[33] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[41] [Step Debug] <- run -i 9 +[38] [Step Debug] <- run -i 9 +[24] [Step Debug] <- run -i 9 +[37] [Step Debug] <- run -i 9 +[33] [Step Debug] <- run -i 9 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:00.425788 + +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:58:00.450536 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:58:00.473742 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:58:00.498240 + +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:58:00.531501 + +[24] Log opened at 2024-05-18 09:58:00.722106 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 1422 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 9 +[33] Log opened at 2024-05-18 09:58:00.860527 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[38] Log opened at 2024-05-18 09:58:00.889575 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[33] [Step Debug] <- run -i 9 +[38] [Step Debug] <- run -i 5 +[37] Log opened at 2024-05-18 09:58:01.036969 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:01.117633 + +[38] [Step Debug] -> + +[38] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[38] [Step Debug] -> + +[38] Log closed at 2024-05-18 09:58:01.208166 + +[33] [Step Debug] -> + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:58:01.274201 + +[24] Log opened at 2024-05-18 09:58:04.057983 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 1422 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[37] [Step Debug] <- run -i 9 +[24] [Step Debug] <- run -i 9 +[37] [Step Debug] -> + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:58:04.275759 + +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:04.863652 + +[24] Log opened at 2024-05-18 09:58:08.949082 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 1422 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 9 +[24] [Step Debug] -> + +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 10 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 11 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 12 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 13 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 15 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 16 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 17 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 18 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 19 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 20 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 21 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 23 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 24 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 25 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 26 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 27 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 28 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 29 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 30 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 31 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 32 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 33 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 34 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 35 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 36 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 37 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 38 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 39 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 40 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 41 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 42 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 43 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 44 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 45 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 46 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 47 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 48 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 49 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 50 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 51 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 52 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 53 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 54 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 55 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 56 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 57 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 58 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 59 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 60 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 61 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 62 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 63 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 64 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 65 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 66 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 67 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 68 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 69 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 70 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 71 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 72 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 73 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 74 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 75 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 76 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 77 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 78 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 79 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 80 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 81 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 82 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 83 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 84 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 85 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 86 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 87 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 88 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 89 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 90 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 91 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 92 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 93 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 94 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 95 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 96 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 97 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 98 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 99 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 100 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 101 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 102 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 103 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 104 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 105 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 106 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 107 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 108 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 109 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 110 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 111 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 112 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 113 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 114 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 115 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 116 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 117 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 118 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 119 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 120 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 121 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 122 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 123 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 124 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 125 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 126 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 127 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 128 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 129 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 130 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 131 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 132 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 133 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 134 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 135 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 136 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 137 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 138 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 139 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 140 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 141 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 142 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 143 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 144 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 145 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 146 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 147 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 148 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 149 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 150 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 151 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 152 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 153 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 154 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 155 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 156 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 157 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 158 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 159 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 160 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 161 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 162 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 163 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 164 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 165 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 166 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 167 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 168 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 169 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 170 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 171 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 172 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 173 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 174 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 175 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 176 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 177 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 178 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 179 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- step_over -i 180 +[24] [Step Debug] -> + +[24] [Step Debug] <- stack_get -i 181 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_names -i 182 -d 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 183 -n "$servicio" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_get -i 184 -n "$nueva_tarifa[0]" -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 185 -d 0 -c 0 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 186 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- property_value -i 187 -d 0 -c 0 -n "$nueva_tarifa[0]->tarifa_nombre" -m 28 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 188 -d 0 -c 1 +[24] [Step Debug] -> + +[24] [Step Debug] <- context_get -i 189 -d 0 -c 2 +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 190 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:37.234067 + +[24] Log opened at 2024-05-18 09:58:37.472131 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[34] Log opened at 2024-05-18 09:58:37.477140 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[23] Log opened at 2024-05-18 09:58:37.477140 +[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'. +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[23] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[23] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[23] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[24] [Step Debug] -> + +[39] Log opened at 2024-05-18 09:58:37.478349 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[31] Log opened at 2024-05-18 09:58:37.479626 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[23] [Step Debug] -> + +[42] Log opened at 2024-05-18 09:58:37.480417 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[23] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[34] [Step Debug] -> + +[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. +[34] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 1 -t exception -x "Fatal error" +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[39] [Step Debug] -> + +[42] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 2 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 3 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[23] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[34] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 4 -n max_children -v 100 +[39] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 5 -n max_data -v 8192 +[39] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[23] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[34] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 6 -n notify_ok -v 1 +[39] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[39] [Step Debug] <- feature_set -i 7 -n resolved_breakpoints -v 1 +[39] [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] -> + +[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] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[42] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[42] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[42] [Step Debug] -> + +[24] [Step Debug] <- run -i 9 +[23] [Step Debug] <- run -i 8 +[34] [Step Debug] <- run -i 8 +[39] [Step Debug] <- run -i 8 +[31] [Step Debug] <- run -i 5 +[42] [Step Debug] <- run -i 5 +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:37.598551 + +[24] Log opened at 2024-05-18 09:58:37.602108 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 1422 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:58:37.724148 + +[34] Log opened at 2024-05-18 09:58:37.726500 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[42] [Step Debug] -> + +[42] Log closed at 2024-05-18 09:58:37.749978 + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[34] [Step Debug] -> + +[42] Log opened at 2024-05-18 09:58:37.752514 +[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. +[34] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[42] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[34] [Step Debug] -> + +[42] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[34] [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] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:58:37.771935 + +[42] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[42] [Step Debug] -> + +[31] Log opened at 2024-05-18 09:58:37.774364 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[42] [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] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:58:37.795862 + +[39] Log opened at 2024-05-18 09:58:37.798961 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[39] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[31] [Step Debug] -> + +[39] [Step Debug] -> + +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:58:37.827071 + +[31] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[39] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[31] [Step Debug] -> + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[39] [Step Debug] -> + +[24] [Step Debug] <- run -i 9 +[34] [Step Debug] <- run -i 9 +[42] [Step Debug] <- run -i 9 +[31] [Step Debug] <- run -i 9 +[39] [Step Debug] <- run -i 9 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:58:38.087280 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-18 09:58:38.115776 + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:58:38.132912 + +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:58:38.158016 + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:38.178485 + +[24] Log opened at 2024-05-18 09:58:38.283283 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 1422 +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[24] [Step Debug] -> + +[24] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[24] [Step Debug] -> + +[24] [Step Debug] <- run -i 9 +[42] Log opened at 2024-05-18 09:58:38.416524 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 1422 +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[42] [Step Debug] -> + +[42] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[42] [Step Debug] -> + +[39] Log opened at 2024-05-18 09:58:38.452464 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] [Step Debug] <- run -i 9 +[39] [Step Debug] <- run -i 5 +[34] Log opened at 2024-05-18 09:58:38.583740 +[34] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.34' +[34] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[34] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[34] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[34] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[34] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 5 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[34] [Step Debug] -> + +[42] [Step Debug] -> + +[24] [Step Debug] -> + +[24] Log closed at 2024-05-18 09:58:38.719611 + +[42] [Step Debug] -> + +[42] Log closed at 2024-05-18 09:58:38.754793 + +[39] [Step Debug] -> + +[39] [Step Debug] <- breakpoint_set -i 6 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1422 +[39] [Step Debug] -> + +[39] Log closed at 2024-05-18 09:58:38.863261 + +[34] [Step Debug] <- breakpoint_set -i 9 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1316 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_remove -i 10 -d 340049 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_set -i 11 -t line -f file:///var/www/html/ci4/app/Services/PresupuestoService.php -n 1316 +[34] [Step Debug] -> + +[34] [Step Debug] <- breakpoint_remove -i 12 -d 340050 +[34] [Step Debug] -> + +[41] Log opened at 2024-05-18 09:59:36.151685 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[34] [Step Debug] <- run -i 13 +[41] [Step Debug] <- run -i 9 +[34] [Step Debug] -> + +[34] [Step Debug] -> + +[34] Log closed at 2024-05-18 09:59:36.398308 + +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:59:36.967913 + +[41] Log opened at 2024-05-18 09:59:41.457300 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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/Services/PresupuestoService.php -n 1422 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 8 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 9 +[41] [Step Debug] -> + +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 10 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 11 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 12 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 13 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 14 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 15 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 16 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 17 +[41] [Step Debug] -> + +[41] [Step Debug] <- stack_get -i 18 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_names -i 19 -d 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 20 -n "$servicio" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_get -i 21 -n "$nueva_tarifa[0]" -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 22 -d 0 -c 0 +[41] [Step Debug] -> + +[41] [Step Debug] <- property_value -i 23 -d 0 -c 0 -n "$servicio->nombre" -m 28 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 24 -d 0 -c 1 +[41] [Step Debug] -> + +[41] [Step Debug] <- context_get -i 25 -d 0 -c 2 +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_remove -i 26 -d 410017 +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 27 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:59:48.014903 + +[41] Log opened at 2024-05-18 09:59:48.217578 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[33] Log opened at 2024-05-18 09:59:48.235390 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[33] [Step Debug] -> + +[37] Log opened at 2024-05-18 09:59:48.236467 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[37] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] Log opened at 2024-05-18 09:59:48.236881 +[33] [Step Debug] -> + +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[33] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[33] [Step Debug] -> + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[23] Log opened at 2024-05-18 09:59:48.237861 +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[36] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] -> + +[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. +[31] Log opened at 2024-05-18 09:59:48.238334 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[23] [Step Debug] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[33] [Step Debug] -> + +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[31] [Step Debug] -> + +[33] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[33] [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] -> + +[36] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[36] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [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] -> + +[37] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[37] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[36] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[31] [Step Debug] -> + +[41] [Step Debug] <- run -i 8 +[33] [Step Debug] <- run -i 5 +[37] [Step Debug] <- run -i 4 +[36] [Step Debug] <- run -i 4 +[23] [Step Debug] <- run -i 4 +[31] [Step Debug] <- run -i 4 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:59:48.316259 + +[41] Log opened at 2024-05-18 09:59:48.320109 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 exception -x "Fatal error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[41] [Step Debug] -> + +[41] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[41] [Step Debug] -> + +[41] [Step Debug] <- run -i 8 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:59:48.405501 + +[23] Log opened at 2024-05-18 09:59:48.408104 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[37] [Step Debug] -> + +[37] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:59:48.425360 + +[37] Log opened at 2024-05-18 09:59:48.428083 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[37] [Step Debug] <- run -i 8 +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:59:48.496448 + +[33] Log opened at 2024-05-18 09:59:48.499147 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:59:48.522895 + +[31] Log opened at 2024-05-18 09:59:48.524958 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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] -> + +[33] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[33] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[31] [Step Debug] -> + +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[31] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[33] [Step Debug] -> + +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[36] [Step Debug] -> + +[36] [Step Debug] <- feature_set -i 5 -n resolved_breakpoints -v 1 +[36] [Step Debug] -> + +[36] Log closed at 2024-05-18 09:59:48.553196 + +[33] [Step Debug] <- run -i 8 +[31] [Step Debug] <- run -i 8 +[41] [Step Debug] -> + +[41] Log closed at 2024-05-18 09:59:48.579437 + +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:59:48.606593 + +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:59:48.634293 + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:59:48.713684 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:59:48.739109 + +[37] Log opened at 2024-05-18 09:59:48.956402 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 exception -x "Fatal error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[37] [Step Debug] -> + +[37] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[37] [Step Debug] -> + +[37] [Step Debug] <- run -i 8 +[31] Log opened at 2024-05-18 09:59:49.094985 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 exception -x "Fatal error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[31] [Step Debug] -> + +[31] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[31] [Step Debug] -> + +[31] [Step Debug] <- run -i 8 +[23] Log opened at 2024-05-18 09:59:49.126596 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 1 -n max_children -v 100 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 2 -n max_data -v 8192 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 3 -n notify_ok -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- feature_set -i 4 -n resolved_breakpoints -v 1 +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 5 -t exception -x "Fatal error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[23] [Step Debug] -> + +[23] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[23] [Step Debug] -> + +[23] [Step Debug] <- run -i 8 +[33] Log opened at 2024-05-18 09:59:49.244061 +[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] INFO: Connected to debugging client: 10.5.0.1:9003 (from REMOTE_ADDR HTTP header). +[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 exception -x "Fatal error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 6 -t exception -x "Parse error" +[33] [Step Debug] -> + +[33] [Step Debug] <- breakpoint_set -i 7 -t exception -x "Unknown error" +[33] [Step Debug] -> + +[33] [Step Debug] <- run -i 8 +[37] [Step Debug] -> + +[37] Log closed at 2024-05-18 09:59:49.347451 + +[31] [Step Debug] -> + +[31] Log closed at 2024-05-18 09:59:49.381791 + +[23] [Step Debug] -> + +[23] Log closed at 2024-05-18 09:59:49.493619 + +[33] [Step Debug] -> + +[33] Log closed at 2024-05-18 09:59:49.552844 + +[37] Log opened at 2024-05-18 10:06:05.330679 +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[37] Log closed at 2024-05-18 10:06:06.110108 + +[37] Log opened at 2024-05-18 10:06:06.451888 +[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. +[42] Log opened at 2024-05-18 10:06:06.465749 +[42] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.42' +[31] Log opened at 2024-05-18 10:06:06.465559 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[33] Log opened at 2024-05-18 10:06:06.465763 +[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'. +[23] Log opened at 2024-05-18 10:06:06.465636 +[42] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[42] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[23] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.23' +[42] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[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'. +[31] [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. +[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. +[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. +[23] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[31] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[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. +[31] [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-18 10:06:06.466110 +[39] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.39' +[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. +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[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] [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. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[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. +[37] Log closed at 2024-05-18 10:06:06.686647 + +[37] Log opened at 2024-05-18 10:06:06.689888 +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[39] [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). +[39] Log closed at 2024-05-18 10:06:06.745625 + +[39] Log opened at 2024-05-18 10:06:06.748335 +[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. +[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. +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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-18 10:06:06.867004 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[33] Log closed at 2024-05-18 10:06:06.949249 + +[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. +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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). +[42] Log closed at 2024-05-18 10:06:06.997760 + +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[23] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[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. +[23] Log closed at 2024-05-18 10:06:07.087124 + +[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. +[37] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[37] [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). +[37] Log closed at 2024-05-18 10:06:07.131197 + +[39] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[39] Log closed at 2024-05-18 10:06:07.217091 + +[39] Log opened at 2024-05-18 10:06:07.966188 +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[39] [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). +[39] Log closed at 2024-05-18 10:06:08.359358 + +[38] Log opened at 2024-05-18 10:06:15.979591 +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[38] Log closed at 2024-05-18 10:06:16.823813 + +[38] Log opened at 2024-05-18 10:06:17.088436 +[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. +[36] Log opened at 2024-05-18 10:06:17.093958 +[41] Log opened at 2024-05-18 10:06:17.093972 +[36] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.36' +[41] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.41' +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[41] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[41] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [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. +[36] [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). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[31] Log opened at 2024-05-18 10:06:17.094407 +[31] [Config] INFO: Control socket set up succesfully: '@xdebug-ctrl.31' +[41] [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: 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). +[33] Log opened at 2024-05-18 10:06:17.094913 +[31] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[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. +[43] Log opened at 2024-05-18 10:06:17.095572 +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [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] 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). +[41] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [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). +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[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. +[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. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[38] Log closed at 2024-05-18 10:06:17.302431 + +[38] Log opened at 2024-05-18 10:06:17.305161 +[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. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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. +[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. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[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. +[31] Log closed at 2024-05-18 10:06:17.391381 + +[31] Log opened at 2024-05-18 10:06:17.393663 +[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. +[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. +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[41] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[41] [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). +[41] Log closed at 2024-05-18 10:06:17.442808 + +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [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). +[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. +[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. +[43] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[43] [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). +[43] Log closed at 2024-05-18 10:06:17.526167 + +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:17.603869 + +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [Step Debug] WARN: Could not connect to client host discovered through HTTP headers, connecting to configured address/port: host.docker.internal:9003. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [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). +[36] [Step Debug] INFO: Checking for client discovery headers: 'HTTP_X_FORWARDED_FOR,REMOTE_ADDR'. +[36] [Step Debug] INFO: Checking header 'HTTP_X_FORWARDED_FOR'. +[36] [Step Debug] INFO: Checking header 'REMOTE_ADDR'. +[36] [Step Debug] INFO: Client host discovered through HTTP header, connecting to 10.5.0.1:9003. +[36] [Step Debug] WARN: Creating socket for '10.5.0.1:9003', poll success, but error: Operation now in progress (29). +[36] [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'. +[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. +[36] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[36] [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). +[36] Log closed at 2024-05-18 10:06:17.724998 + +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[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. +[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. +[38] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[38] [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). +[38] Log closed at 2024-05-18 10:06:17.794990 + +[31] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:17.860896 + +[33] Log opened at 2024-05-18 10:06:18.518834 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:18.934025 + +[33] Log opened at 2024-05-18 10:06:20.513290 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:20.899573 + +[33] Log opened at 2024-05-18 10:06:21.199387 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:21.417069 + +[42] Log opened at 2024-05-18 10:06:22.263910 +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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-18 10:06:22.400827 +[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] [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. +[33] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[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). +[42] [Step Debug] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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). +[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] WARN: Creating socket for 'host.docker.internal:9003', getaddrinfo: Invalid argument. +[42] [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). +[42] Log closed at 2024-05-18 10:06:22.564708 + +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:22.758436 + +[33] Log opened at 2024-05-18 10:06:23.157011 +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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', getaddrinfo: Invalid argument. +[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-18 10:06:23.499225 +